Skip to content

Commit c4cc976

Browse files
committed
CI: Update GitHub actions from master
1 parent c7257ce commit c4cc976

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ jobs:
3232
if [[ -z "$COMMIT_MSG" ]]; then
3333
COMMIT_MSG=$(git show -s --format=%s)
3434
fi
35-
echo $COMMIT_MSG
36-
echo "::set-output name=commit_message::$COMMIT_MSG"
35+
echo commit_message=$COMMIT_MSG | tee -a $GITHUB_OUTPUT
3736
env:
3837
COMMIT_MSG: ${{ github.event.head_commit.message }}
3938

@@ -114,14 +113,14 @@ jobs:
114113
runs-on: ubuntu-latest
115114
strategy:
116115
matrix:
117-
python-version: [3.7, 3.8, 3.9]
116+
python-version: [3.7, 3.8, 3.9, "3.10"]
118117
install: [repo]
119118
include:
120-
- python-version: 3.9
119+
- python-version: "3.10"
121120
install: sdist
122-
- python-version: 3.9
121+
- python-version: "3.10"
123122
install: wheel
124-
- python-version: 3.9
123+
- python-version: "3.10"
125124
install: editable
126125

127126
env:
@@ -253,8 +252,6 @@ jobs:
253252
name: Submit to CodeCov
254253

255254
flake8:
256-
needs: check_if_skip
257-
if: "!contains(needs.check_if_skip.outputs.commit_message, '[skip ci]')"
258255
runs-on: ubuntu-latest
259256
steps:
260257
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)