Skip to content

Commit

Permalink
Merge pull request #406 from Crunch-io/ci-update
Browse files Browse the repository at this point in the history
codecov action update, python 3.12 support
  • Loading branch information
ernestoarbitrio authored Nov 20, 2024
2 parents 9b4f6b4 + a273103 commit 4a07199
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
max-parallel: 5
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -36,7 +36,7 @@ jobs:
run: tox -e typechecker
- name: Test with tox
run: tox
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py36, py37, py38, py39, py310, py311, coverage, lint
envlist = py36, py37, py38, py39, py310, py311, py312, coverage, lint

[gh-actions]
python =
Expand All @@ -9,6 +9,7 @@ python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312

[testenv]
basepython =
Expand All @@ -18,6 +19,7 @@ basepython =
py39: python3.9
py310: python3.10
py311: python3.11
py312: python3.12
py3: python3.6

commands =
Expand Down

0 comments on commit 4a07199

Please sign in to comment.