Skip to content

Commit

Permalink
py3.10 not in gh action matrix on all arches; add [ci skip] ability
Browse files Browse the repository at this point in the history
  • Loading branch information
duetosymmetry committed Oct 17, 2021
1 parent 2f3029b commit 4619f9d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/pytest-not-slow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ on: [push]
jobs:
build:

if: "!contains(github.event.head_commit.message, 'ci skip')"
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 4
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.8', '3.9'] # 3.10 hasn't been enabled on all arches yet

steps:
- uses: actions/checkout@v1
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pytest-slow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on: [push]
jobs:
build:

if: "!contains(github.event.head_commit.message, 'ci skip')"
runs-on: ubuntu-latest
strategy:
max-parallel: 4
Expand Down

0 comments on commit 4619f9d

Please sign in to comment.