From 8cae38553c3bcae29c4dcb28a95f2044924dc0fb Mon Sep 17 00:00:00 2001 From: Kory Draughn Date: Fri, 16 Jan 2026 16:32:29 -0500 Subject: [PATCH] [250] Add automated testing using GitHub Actions --- .github/workflows/build-and-test-plugin.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/build-and-test-plugin.yml diff --git a/.github/workflows/build-and-test-plugin.yml b/.github/workflows/build-and-test-plugin.yml new file mode 100644 index 0000000..858f09a --- /dev/null +++ b/.github/workflows/build-and-test-plugin.yml @@ -0,0 +1,11 @@ +name: build-and-test-plugin + +on: [push, pull_request] + +defaults: + run: + shell: bash + +jobs: + build_and_test_plugin_using_default_matrix: + uses: irods/irods_reusable_github_workflows/.github/workflows/build-and-test-plugin-matrix.yml@main