From bda86f13dd6d44b955434104be0b06df97c9310a Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Mon, 10 Oct 2022 22:52:33 +0200 Subject: [PATCH] Run tests on pull requests --- .github/workflows/test.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/test.yaml diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml new file mode 100644 index 0000000..a990f33 --- /dev/null +++ b/.github/workflows/test.yaml @@ -0,0 +1,25 @@ +name: Test + +on: + pull_request: + branches: [ "master" ] + +jobs: + tests: + name: Python tests + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Install poetry + run: pipx install poetry==1.1.15 + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.10' + cache: poetry + - name: Install dependencies + run: poetry install + - name: Test + run: poetry run pytest --cov=. --cov-branch --cov-report term-missing:skip-covered + working-directory: ./src/