Merge pull request #255 from ICAMS/minor_tweaks_to_ptrfd #508
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: calphy testing | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| python-version: ["3.11", "3.12"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Miniforge | |
| uses: conda-incubator/setup-miniconda@v3 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| miniforge-version: latest | |
| channels: conda-forge | |
| environment-file: environment.yml | |
| - name: Upgrade pylammpsmpi | |
| shell: bash -l {0} | |
| run: pip install --upgrade pylammpsmpi | |
| - name: Install calphy | |
| shell: bash -l {0} | |
| run: | | |
| pip install -e ".[test]" | |
| pip install --upgrade pylammpsmpi | |
| - name: Run tests | |
| shell: bash -l {0} | |
| run: pytest tests/ -v |