File tree Expand file tree Collapse file tree 2 files changed +15
-14
lines changed Expand file tree Collapse file tree 2 files changed +15
-14
lines changed Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
strategy :
11
11
matrix :
12
- python-version : ["3.11", "3.12"]
12
+ python-version : ["3.11", "3.12", "3.13" ]
13
13
steps :
14
14
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
15
15
with :
Original file line number Diff line number Diff line change
1
+ ---
1
2
name : Test
2
3
3
4
on : [push]
7
8
runs-on : ubuntu-latest
8
9
strategy :
9
10
matrix :
10
- python-version : ["3.11", "3.12"]
11
+ python-version : ["3.11", "3.12", "3.13" ]
11
12
steps :
12
- - uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
13
- - name : Set up Python ${{ matrix.python-version }}
14
- uses : actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5
15
- with :
16
- python-version : ${{ matrix.python-version }}
17
- - name : Install test dependencies
18
- run : |
19
- python -m pip install --upgrade pip
20
- pip install --editable .
21
- - name : Run unit tests
22
- run : |
23
- python -m unittest discover -v -s src/
13
+ - uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
14
+ - name : Set up Python ${{ matrix.python-version }}
15
+ uses : actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5
16
+ with :
17
+ python-version : ${{ matrix.python-version }}
18
+ - name : Install test dependencies
19
+ run : |
20
+ python -m pip install --upgrade pip
21
+ pip install --editable .
22
+ - name : Run unit tests
23
+ run : |
24
+ python -m unittest discover -v -s src/
You can’t perform that action at this time.
0 commit comments