Skip to content

Commit

Permalink
Added workflow for Alchemical Model tests
Browse files Browse the repository at this point in the history
  • Loading branch information
abmazitov committed Feb 8, 2024
1 parent 2bdb5cb commit f4a1d6d
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/alchemical-model-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Alchemical Model tests

on:
push:
branches: [main]
pull_request:
# Check all PR

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

steps:
- uses: actions/checkout@v3

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

- name: run Alchemical Model tests
run: tox -e alchemical-model-tests
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

0 comments on commit f4a1d6d

Please sign in to comment.