Skip to content

Commit 9e6e518

Browse files
authored
chore: Use codecov secret when uploading coverage (#57)
1 parent 667e0a1 commit 9e6e518

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/test.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [ubuntu-latest]
20-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
20+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
2121

2222
steps:
2323
- uses: actions/checkout@v4
@@ -58,19 +58,19 @@ jobs:
5858
pytest geoarrow-pandas/tests -v -s
5959
6060
- name: Run doctests (geoarrow-pyarrow)
61-
if: success() && matrix.python-version == '3.12'
61+
if: success() && matrix.python-version == '3.13'
6262
run: |
6363
cd geoarrow-pyarrow
6464
pytest --pyargs geoarrow.pyarrow --doctest-modules --import-mode=importlib
6565
6666
- name: Run doctests (geoarrow-types)
67-
if: success() && matrix.python-version == '3.12'
67+
if: success() && matrix.python-version == '3.13'
6868
run: |
6969
cd geoarrow-types
7070
pytest --pyargs geoarrow.types --doctest-modules --import-mode=importlib
7171
7272
- name: Run doctests (geoarrow-pandas)
73-
if: success() && matrix.python-version == '3.12'
73+
if: success() && matrix.python-version == '3.13'
7474
run: |
7575
cd geoarrow-pandas
7676
pytest --pyargs geoarrow.pandas --doctest-modules --import-mode=importlib
@@ -86,7 +86,7 @@ jobs:
8686
- name: Set up Python
8787
uses: actions/setup-python@v4
8888
with:
89-
python-version: '3.12'
89+
python-version: '3.13'
9090
cache: 'pip'
9191

9292
- name: Install (geoarrow-pyarrow)
@@ -134,4 +134,5 @@ jobs:
134134
- name: Upload coverage to codecov
135135
uses: codecov/codecov-action@v2
136136
with:
137-
files: 'geoarrow-pyarrow/coverage.xml,geoarrow-ptypes/coverage.xml,geoarrow-pandas/coverage.xml'
137+
files: 'geoarrow-pyarrow/coverage.xml,geoarrow-types/coverage.xml,geoarrow-pandas/coverage.xml'
138+
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)