diff --git a/.github/workflows/alchemical-model-tests.yml b/.github/workflows/alchemical-model-tests.yml index 3b4d088b1..a542ef1f2 100644 --- a/.github/workflows/alchemical-model-tests.yml +++ b/.github/workflows/alchemical-model-tests.yml @@ -8,20 +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 }} + python-version: "3.12" - run: pip install tox - name: run Alchemical Model tests @@ -29,8 +24,3 @@ jobs: env: # Use the CPU only version of torch when building/running the code PIP_EXTRA_INDEX_URL: https://download.pytorch.org/whl/cpu - - - name: Upload codecoverage - uses: codecov/codecov-action@v3 - with: - files: ./tests/coverage.xml diff --git a/.github/workflows/pet-tests.yml b/.github/workflows/pet-tests.yml index 87dfd2c13..d1036accc 100644 --- a/.github/workflows/pet-tests.yml +++ b/.github/workflows/pet-tests.yml @@ -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 @@ -29,8 +24,3 @@ jobs: env: # Use the CPU only version of torch when building/running the code PIP_EXTRA_INDEX_URL: https://download.pytorch.org/whl/cpu - - - name: Upload codecoverage - uses: codecov/codecov-action@v4 - with: - files: ./tests/coverage.xml diff --git a/.github/workflows/soap-bpnn-tests.yml b/.github/workflows/soap-bpnn-tests.yml index bfd998f55..85cdddbca 100644 --- a/.github/workflows/soap-bpnn-tests.yml +++ b/.github/workflows/soap-bpnn-tests.yml @@ -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 @@ -29,8 +24,3 @@ jobs: env: # Use the CPU only version of torch when building/running the code PIP_EXTRA_INDEX_URL: https://download.pytorch.org/whl/cpu - - - name: Upload codecoverage - uses: codecov/codecov-action@v4 - with: - files: ./tests/coverage.xml