Skip to content

Commit 93d2918

Browse files
committed
ci: update GH actions
1 parent e034663 commit 93d2918

File tree

4 files changed

+17
-14
lines changed

4 files changed

+17
-14
lines changed

.github/workflows/codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
uses: actions/checkout@v3
1212

1313
- name: Set up Python 3.10
14-
uses: actions/setup-python@v3
14+
uses: actions/setup-python@v5
1515
with:
1616
python-version: '3.10'
1717

.github/workflows/packaging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v3
1919

2020
- name: Set up Python ${{ matrix.python-version }}
21-
uses: actions/setup-python@v4
21+
uses: actions/setup-python@v5
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424

.github/workflows/python-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v3
1919

2020
- name: Set up Python ${{ matrix.python-version }}
21-
uses: actions/setup-python@v4
21+
uses: actions/setup-python@v5
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424

@@ -37,7 +37,7 @@ jobs:
3737
- uses: actions/checkout@v3
3838

3939
- name: Set up Python
40-
uses: actions/setup-python@v4
40+
uses: actions/setup-python@v5
4141
with:
4242
python-version: '3.x'
4343

.github/workflows/python-test.yml

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,31 @@
11
name: Python testing
22

33
on:
4-
- push
5-
- pull_request
4+
push:
5+
branches:
6+
- '**'
7+
8+
pull_request:
9+
branches:
10+
- '**'
611

712
jobs:
8-
test:
13+
build:
914
runs-on: ubuntu-latest
1015
strategy:
1116
matrix:
12-
python-version: ["3.7", "3.8", "3.9", "3.10"]
17+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
1318

1419
steps:
15-
- uses: actions/checkout@v2
16-
20+
- uses: actions/checkout@v4
1721
- name: Set up Python ${{ matrix.python-version }}
18-
uses: actions/setup-python@v4
22+
uses: actions/setup-python@v5
1923
with:
2024
python-version: ${{ matrix.python-version }}
21-
2225
- name: Install dependencies
2326
run: |
2427
python -m pip install --upgrade pip
25-
pip install tox tox-gh-actions
26-
28+
python -m pip install tox tox-gh-actions
29+
python -m pip install poetry poetry poetry-plugin-export
2730
- name: Test with tox
2831
run: tox

0 commit comments

Comments
 (0)