File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 10
10
jobs :
11
11
12
12
build :
13
- runs-on : ubuntu-20.04 # lastest doesn't support python3.6
13
+ runs-on : ubuntu-latest
14
14
strategy :
15
15
matrix :
16
- python-version : [3.8, 3.9, "3.10", 3.11-dev ]
16
+ python-version : [3.8, 3.9, "3.10", " 3.11" ]
17
17
18
18
steps :
19
19
- uses : actions/checkout@v3
@@ -46,15 +46,15 @@ jobs:
46
46
run : |
47
47
export CODACY_PROJECT_TOKEN=${{ secrets.CODACY_PROJECT_TOKEN }}
48
48
bash <(curl -Ls https://coverage.codacy.com/get.sh) report -r .coverage.xml
49
- if : matrix.python-version == 3.9 && github.event_name != 'pull_request'
49
+ if : matrix.python-version == "3.10" && github.event_name != 'pull_request'
50
50
51
51
deploy :
52
52
needs : build
53
53
runs-on : ubuntu-latest
54
54
if : github.event_name == 'release'
55
55
strategy :
56
56
matrix :
57
- python-version : [3.9 ]
57
+ python-version : ["3.10" ]
58
58
steps :
59
59
- uses : actions/checkout@v3
60
60
- name : Setup Python # Set Python version
You can’t perform that action at this time.
0 commit comments