Clarify that we use conservative forces by default #523
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 }} |