Add Symplectic FlashMD Model #6376
Workflow file for this run
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.10" | |
| - os: ubuntu-24.04 | |
| python-version: "3.13" | |
| - os: macos-14 | |
| python-version: "3.13" | |
| - os: windows-2022 | |
| python-version: "3.13" | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install Zsh | |
| if: startsWith(matrix.os, 'ubuntu') | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y zsh libfftw3-dev | |
| touch ~/.zshrc | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| version: "0.9.0" | |
| python-version: ${{ matrix.python-version }} | |
| enable-cache: true | |
| activate-environment: true | |
| - name: Set tox and coverage | |
| run: | | |
| uv pip install coverage[toml] | |
| uv tool install tox --with tox-uv | |
| - name: run Python tests | |
| run: tox -e tests | |
| env: | |
| # Use the CPU only version of torch when building/running the code | |
| PIP_EXTRA_INDEX_URL: https://download.pytorch.org/whl/cpu | |
| HUGGINGFACE_TOKEN_METATRAIN: ${{ secrets.HUGGINGFACE_TOKEN }} | |
| - name: upload to codecov.io | |
| uses: codecov/codecov-action@v6 | |
| with: | |
| # https://github.com/codecov/codecov-action/issues/1842 | |
| fail_ci_if_error: false | |
| files: tests/coverage.xml | |
| token: ${{ secrets.CODECOV_TOKEN }} |