File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 1
1
name : Publish
2
-
3
2
on :
4
3
push :
5
4
branches : [main]
5
+ strategy :
6
+ matrix :
7
+ python-version : ["3.11"]
6
8
7
9
jobs :
8
10
test :
9
11
runs-on : ubuntu-latest
10
12
steps :
11
13
- uses : actions/checkout@v4
12
14
13
- - name : Set up Python
15
+ - name : Set up Python ${{ matrix.python-version }}
14
16
uses : actions/setup-python@v5
15
17
with :
16
- python-version : " 3.11 "
18
+ python-version : ${{ matrix.python-version }}
17
19
18
20
- name : Install uv
19
21
run : |
@@ -55,10 +57,10 @@ jobs:
55
57
steps :
56
58
- uses : actions/checkout@v4
57
59
58
- - name : Set up Python
60
+ - name : Set up Python ${{ matrix.python-version }}
59
61
uses : actions/setup-python@v5
60
62
with :
61
- python-version : " 3.11 "
63
+ python-version : ${{ matrix.python-version }}
62
64
63
65
- name : Install uv
64
66
run : |
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ name: Test
2
2
3
3
on :
4
4
push :
5
- branches : [main]
5
+ branches : [main, develop ]
6
6
pull_request :
7
- branches : [main]
7
+ branches : [main, develop ]
8
8
9
9
jobs :
10
10
test :
You can’t perform that action at this time.
0 commit comments