Skip to content

Clarify that we use conservative forces by default #523

Clarify that we use conservative forces by default

Clarify that we use conservative forces by default #523

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
# Check all PR
jobs:
tests:
strategy:
matrix:
include:
- os: ubuntu-24.04
python-version: "3.11"
- os: ubuntu-24.04
python-version: "3.13"
- os: macos-15
python-version: "3.13"
- os: windows-2022
python-version: "3.13"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- run: pip install tox
- name: run Python tests
run: |
tox -e upet-tests
tox -e pet-mad-dos-tests
env:
# Use the CPU only version of torch when building/running the code
PIP_EXTRA_INDEX_URL: https://download.pytorch.org/whl/cpu
HF_TOKEN: ${{ secrets.HF_TOKEN }}