Skip to content

Commit

Permalink
gha: update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-zero committed Jun 26, 2024
1 parent a3f8aeb commit 987e5f4
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
python-version: ['3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand All @@ -18,15 +18,16 @@ jobs:
architecture: x64

- name: Install Poetry
uses: snok/[email protected].1
uses: snok/[email protected].4

- name: Install dependencies
run: poetry install -E yaml

- name: Run pytest
run: poetry run pytest --cov-report=xml --cov-report=term-missing --cov-append --cov=cp2k_output_tools tests/

- uses: codecov/codecov-action@v3.1.0
- uses: codecov/codecov-action@v4.5.0
with:
files: ./coverage.xml
fail_ci_if_error: true
fail_ci_if_error: false
token: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit 987e5f4

Please sign in to comment.