actions: exclude Python 3.6 tests on macos-latest
Python 3.6 support is no longer available on macos-latest. Exclude it. Signed-off-by: Henrik Brix Andersen <henrik@brixandersen.dk>
This commit is contained in:
parent
90db5b7a15
commit
d198da7bb4
3
.github/workflows/devicetree_checks.yml
vendored
3
.github/workflows/devicetree_checks.yml
vendored
|
@ -22,6 +22,9 @@ jobs:
|
|||
matrix:
|
||||
python-version: [3.6, 3.7, 3.8]
|
||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||
exclude:
|
||||
- os: macos-latest
|
||||
python-version: 3.6
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v2
|
||||
|
|
3
.github/workflows/west_cmds.yml
vendored
3
.github/workflows/west_cmds.yml
vendored
|
@ -23,6 +23,9 @@ jobs:
|
|||
matrix:
|
||||
python-version: [3.6, 3.7, 3.8]
|
||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||
exclude:
|
||||
- os: macos-latest
|
||||
python-version: 3.6
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v2
|
||||
|
|
Loading…
Reference in a new issue