@@ -10,31 +10,31 @@ jobs:
10
10
runs-on : ${{ matrix.os }}
11
11
strategy :
12
12
matrix :
13
- python-version : ["3.8", "3. 9", "3.10", "3.11", "3.12", "pypy3.9"]
13
+ python-version : ["3.9", "3.10", "3.11", "3.12", "pypy3.9", '3.13' ]
14
14
os : ["ubuntu-latest"]
15
15
steps :
16
- - uses : actions/checkout@v4
17
- - name : Set up Python ${{ matrix.python-version }}
18
- uses : actions/setup-python@v5
19
- with :
20
- python-version : ${{ matrix.python-version }}
21
- - name : Install Deps
22
- run : sudo apt-get install check libcppunit-dev
23
- - name : Install package
24
- run : |
25
- python -m pip install ruff
26
- python -m pip install -U '.[test,docs]'
27
- - name : Build
28
- run : autoreconf -fi && ./configure && make
29
- - name : Run ruff check
30
- run : ruff check python
31
- - name : Format
32
- run : |
33
- python -m ruff format --check .
34
- - name : Run make check
35
- run : make check
36
- - name : Run make distcheck
37
- run : make distcheck
16
+ - uses : actions/checkout@v4
17
+ - name : Set up Python ${{ matrix.python-version }}
18
+ uses : actions/setup-python@v5
19
+ with :
20
+ python-version : ${{ matrix.python-version }}
21
+ - name : Install Deps
22
+ run : sudo apt-get install check libcppunit-dev
23
+ - name : Install package
24
+ run : |
25
+ python -m pip install ruff
26
+ python -m pip install -U '.[test,docs]'
27
+ - name : Build
28
+ run : autoreconf -fi && ./configure && make
29
+ - name : Run ruff check
30
+ run : ruff check python
31
+ - name : Format
32
+ run : |
33
+ python -m ruff format --check .
34
+ - name : Run make check
35
+ run : make check
36
+ - name : Run make distcheck
37
+ run : make distcheck
38
38
# Disabled; needs a tuit or two
39
39
# - name: Docs build
40
40
# run: md2html.py README.md README.html
0 commit comments