From 82d0ff0a2bed4eeed39acf7b46ae195c8d702701 Mon Sep 17 00:00:00 2001 From: Rich FitzJohn Date: Wed, 18 Oct 2023 09:21:19 +0100 Subject: [PATCH] Add actions --- .github/workflows/test.yml | 46 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..1e2f173 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,46 @@ +name: Test + +on: + pull_request: + branches: + - main + - master + push: + branches: + - main + - master + +env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + +jobs: + run: + + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + python-version: ["3.8", "3.9", "3.10", "3.11"] + + steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install hatch + - name: Test + run: | + hatch run cov-ci + - name: Lint + run: | + hatch run lint:style + - name: Upload to Codecov + uses: codecov/codecov-action@v3 + with: + # This can be useful, but the false positive rate is + # annoyingly high. + fail_ci_if_error: false