From e0882878cb8ffbb645294c11e08faad52844b410 Mon Sep 17 00:00:00 2001 From: Brendan Ngo Date: Wed, 5 Feb 2025 15:50:35 -0500 Subject: [PATCH] chore: add basic ci tests --- .github/workflows/ci-core-tests.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/ci-core-tests.yml diff --git a/.github/workflows/ci-core-tests.yml b/.github/workflows/ci-core-tests.yml new file mode 100644 index 0000000..61e48a9 --- /dev/null +++ b/.github/workflows/ci-core-tests.yml @@ -0,0 +1,23 @@ +name: core-tests + +on: + pull_request: + types: [ + # Default pull_request trigger types. + opened, + synchronize, + reopened, + ] + push: + branches: [main] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Validate syntax + run: bash -n *.sh \ No newline at end of file