diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml new file mode 100644 index 0000000..81ede4c --- /dev/null +++ b/.github/workflows/test.yaml @@ -0,0 +1,17 @@ +name: Test + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + setup: + uses: ./.github/workflows/setup.yaml + test: + runs-on: ubuntu-latest + needs: setup + steps: + - uses: actions/checkout@v3 + - run: make test