Skip to content

Commit 47e64af

Browse files
committed
Update GH actions
Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
1 parent d13ac61 commit 47e64af

File tree

4 files changed

+11
-13
lines changed

4 files changed

+11
-13
lines changed

.github/workflows/Coverage.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ jobs:
66
build:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v5
1010
- name: Set up Python 3.10
11-
uses: actions/setup-python@v2
11+
uses: actions/setup-python@v5
1212
with:
1313
python-version: '3.10'
1414
- name: Test with pytest
@@ -21,7 +21,6 @@ jobs:
2121
pytest --cov=./ --cov-report=xml
2222
make doctest
2323
- name: Upload coverage to Codecov
24-
if: matrix.python-version == '3.8'
2524
uses: codecov/codecov-action@v1
2625
with:
2726
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/Lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ jobs:
66
build:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v5
1010
- name: Set up Python 3.10
11-
uses: actions/setup-python@v2
11+
uses: actions/setup-python@v5
1212
with:
1313
python-version: '3.10'
1414
- name: Install dependencies

.github/workflows/pythonpublish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
strategy:
1111
max-parallel: 4
1212
matrix:
13-
python-version: [3.8]
13+
python-version: [3.10]
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v5
1616
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v2
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020
- name: Install dependencies

.github/workflows/tests-matrix.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,17 @@ jobs:
66
runs-on: ${{ matrix.os }}
77
continue-on-error: true
88
strategy:
9-
fail-fast: false
109
matrix:
1110
os: [macos-latest, windows-latest, ubuntu-latest]
12-
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
11+
python-version: [ '3.9', '3.10', '3.11', '3.12' , '3.13' , '3.14' ]
1312

1413
steps:
15-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v5
1615
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v2
16+
uses: actions/setup-python@v5
1817
with:
1918
python-version: ${{ matrix.python-version }}
20-
architecture: x64
19+
allow-prereleases: true
2120
- name: Install dependencies
2221
run: |
2322
python -m pip install --upgrade pip pycdfpp

0 commit comments

Comments
 (0)