Skip to content

Commit a5f85b6

Browse files
committed
update CI action
1 parent 12c4576 commit a5f85b6

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,28 +13,28 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Check out repo
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v4
1717
- name: Set up Python
18-
uses: actions/setup-python@v2
18+
uses: actions/setup-python@v5
1919
- name: Run pre-commit
20-
uses: pre-commit/action@v2.0.3
20+
uses: pre-commit/action@v3.0.1
2121

2222
build:
2323
runs-on: ${{ matrix.os }}
2424
strategy:
2525
matrix:
26-
os: [ubuntu-latest, windows-latest, macOS-latest]
27-
python-version: ["3.7", "3.8", "3.9", "3.10"]
26+
os: [ubuntu-latest, macos-latest]
27+
python-version: ["3.8", "3.9", "3.10", "3.11"]
2828
steps:
29-
- uses: actions/setup-python@v2
29+
- uses: actions/setup-python@v5
3030
with:
3131
python-version: ${{ matrix.python-version }}
32-
- uses: actions/checkout@v2
32+
- uses: actions/checkout@v4
3333
# - name: Install system dependencies
3434
# run: sudo apt-get install -y texlive-latex-base texlive-latex-extra context python3-tk
3535
- name: Test with tox
3636
run: |
3737
pip install tox
3838
tox -- --cov tikzplotlib --cov-report xml --cov-report term
39-
- uses: codecov/codecov-action@v1
40-
if: ${{ matrix.python-version == '3.10' && matrix.os == 'ubuntu-latest' }}
39+
- uses: codecov/codecov-action@v4
40+
if: ${{ matrix.python-version == '3.11' && matrix.os == 'ubuntu-latest' }}

0 commit comments

Comments
 (0)