Skip to content

Commit

Permalink
Improved workflow matrices
Browse files Browse the repository at this point in the history
  • Loading branch information
craabreu committed Jan 30, 2024
1 parent 435b655 commit d0306ce
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/Linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,14 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.9, 3.11]
openmm-version: ["7.7", "8.0", "8.1"]
include:
- os: ubuntu-latest
python-version: ["3.9", "3.11"]
openmm-version: ["8.0", "8.1"]

- os: ubuntu-latest
python-version: "3.9"
openmm-version: "7.7"

steps:
- uses: actions/checkout@v3
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/MacOS.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macOS-latest]
python-version: [3.11]
openmm-version: ["8.1"]
include:
- os: macos-latest
python-version: "3.11"
openmm-version: "8.1"

steps:
- uses: actions/checkout@v3
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/Windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
python-version: [3.11]
openmm-version: ["8.1"]
include:
- os: windows-latest
python-version: "3.11"
openmm-version: "8.1"

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit d0306ce

Please sign in to comment.