diff --git a/.github/workflows/pr-verification.yml b/.github/workflows/pr-verification.yml new file mode 100644 index 00000000..4217e734 --- /dev/null +++ b/.github/workflows/pr-verification.yml @@ -0,0 +1,26 @@ +name: pr-verification + +on: + pull_request: + branches: [ "main" ] + workflow_dispatch: + +jobs: + + unit-tests: + name: unit-tests + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Set up Python + uses: actions/setup-python@v3 + with: + python-version: 3.x + + - name: Install Tox + run: pip install tox + + - name: Run Tox + run: tox