Skip to content

Commit

Permalink
Merge pull request #3562 from neutrinoceros/ci_ubuntu_latest
Browse files Browse the repository at this point in the history
MNT: use ubuntu-latest in github action workflows
  • Loading branch information
Xarthisius authored Oct 13, 2021
2 parents 0cf9a5b + 2580444 commit aa9e53c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build-test-pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,16 @@ jobs:
build:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-18.04]
os: [
macos-latest,
windows-latest,
ubuntu-latest,
]
python-version: [3.9]
dependencies: [full]
tests-type: [unit]
include:
- os: ubuntu-18.04
- os: ubuntu-latest
python-version: 3.6
dependencies: minimal
tests-type: unit
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,20 @@ jobs:
build:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-18.04]
os: [
macos-latest,
windows-latest,
ubuntu-latest,
]
python-version: [3.9]
dependencies: [full]
tests-type: [unit]
include:
- os: ubuntu-18.04
- os: ubuntu-latest
python-version: 3.6
dependencies: minimal
tests-type: unit
- os: ubuntu-18.04
- os: ubuntu-latest
python-version: 3.7
dependencies: full
tests-type: answer
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-18.04, windows-latest, macos-latest]
os: [
macos-latest,
windows-latest,
ubuntu-latest,
]
fail-fast: false

steps:
Expand Down

0 comments on commit aa9e53c

Please sign in to comment.