Skip to content

Commit

Permalink
Improved CI workflows (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
Charlles Abreu authored Jan 31, 2024
1 parent ecd6072 commit 5bc941d
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 9 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/Linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,18 @@ 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.11"
openmm-version: "8.1"

- os: ubuntu-latest
python-version: "3.10"
openmm-version: "8.0"

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

steps:
- uses: actions/checkout@v3
Expand All @@ -41,6 +50,7 @@ jobs:
environment-name: test
create-args: >-
python=${{ matrix.python-version }}
openmm=${{ matrix.openmm-version }}
- name: Install package
# conda setup requires this special shell
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 5bc941d

Please sign in to comment.