diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml new file mode 100644 index 0000000..ddfde49 --- /dev/null +++ b/.github/workflows/test.yaml @@ -0,0 +1,18 @@ +name: test +run-name: Run tests + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + workflow_call: + +jobs: + pre-commit: + name: Check pre-commit + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 + - uses: pre-commit/action@v3.0.0