Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove matrix for actions that don't need it #124

Merged
merged 3 commits into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 5 additions & 11 deletions .github/workflows/alchemical-model-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,15 @@ on:

jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-22.04
python-version: "3.11"
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install tox
python-version: "3.12

- name: run Alchemical Model tests
run: tox -e alchemical-model-tests
Expand Down
11 changes: 3 additions & 8 deletions .github/workflows/pet-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,15 @@ on:

jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-22.04
python-version: "3.12"
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: "3.12"
- run: pip install tox

- name: run PET tests
Expand Down
11 changes: 3 additions & 8 deletions .github/workflows/soap-bpnn-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,15 @@ on:

jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-22.04
python-version: "3.12"
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: "3.12"
- run: pip install tox

- name: run SOAP-BPNN tests
Expand Down
Loading