File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change 32
32
if [[ -z "$COMMIT_MSG" ]]; then
33
33
COMMIT_MSG=$(git show -s --format=%s)
34
34
fi
35
- echo $COMMIT_MSG
36
- echo "::set-output name=commit_message::$COMMIT_MSG"
35
+ echo commit_message=$COMMIT_MSG | tee -a $GITHUB_OUTPUT
37
36
env :
38
37
COMMIT_MSG : ${{ github.event.head_commit.message }}
39
38
@@ -114,14 +113,14 @@ jobs:
114
113
runs-on : ubuntu-latest
115
114
strategy :
116
115
matrix :
117
- python-version : [3.7, 3.8, 3.9]
116
+ python-version : [3.7, 3.8, 3.9, "3.10" ]
118
117
install : [repo]
119
118
include :
120
- - python-version : 3.9
119
+ - python-version : " 3.10 "
121
120
install : sdist
122
- - python-version : 3.9
121
+ - python-version : " 3.10 "
123
122
install : wheel
124
- - python-version : 3.9
123
+ - python-version : " 3.10 "
125
124
install : editable
126
125
127
126
env :
@@ -253,8 +252,6 @@ jobs:
253
252
name : Submit to CodeCov
254
253
255
254
flake8 :
256
- needs : check_if_skip
257
- if : " !contains(needs.check_if_skip.outputs.commit_message, '[skip ci]')"
258
255
runs-on : ubuntu-latest
259
256
steps :
260
257
- uses : actions/checkout@v3
You can’t perform that action at this time.
0 commit comments