From b95a036711be3b7272cc767e0b6f844dff6e0ee5 Mon Sep 17 00:00:00 2001 From: Koosha Paridehpour Date: Sun, 1 Mar 2026 19:57:03 -0700 Subject: [PATCH] chore: add lint-test composite action workflow --- .github/workflows/lint-test.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/lint-test.yml diff --git a/.github/workflows/lint-test.yml b/.github/workflows/lint-test.yml new file mode 100644 index 0000000000..b8a831c87d --- /dev/null +++ b/.github/workflows/lint-test.yml @@ -0,0 +1,18 @@ +name: Lint & Test + +on: + pull_request: + types: [opened, synchronize, reopened] + +permissions: + contents: read + +jobs: + lint-test: + name: lint-test + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - uses: KooshaPari/phenotypeActions/actions/lint-test@main