We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04daac4 commit fbe1e2aCopy full SHA for fbe1e2a
.github/workflows/main.yml
@@ -9,20 +9,23 @@ env:
9
10
jobs:
11
build:
12
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-24.04
13
container: ${{ matrix.container }}
14
strategy:
15
fail-fast: false
16
matrix:
17
python:
18
- - "3.6"
19
- - "3.7"
20
- "3.8"
21
- "3.9"
22
- "3.10"
23
- "3.11"
24
- "3.12"
25
- "3.13"
+ include:
+ - python: "3.6"
26
+ container: "python:3.6"
27
+ - python: "3.7"
28
+ container: "python:3.7"
29
env:
30
PYTHON: ${{ matrix.python }}
31
steps:
@@ -45,7 +48,6 @@ jobs:
45
48
for file in /usr/lib/python3/dist-packages/rpm/_rpm*.cpython-*.so; do
46
49
sudo ln -s ${file} $(echo ${file} | sed 's/\.cpython[^.]*//');
47
50
done
- if: matrix.container == null
51
- name: Install dependencies
52
run: pip install tox tox-gh-actions
53
- name: Run tests
0 commit comments