Merge pull request #196 from ICAMS/el_order #363
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: | |
| build: | |
| runs-on: ${{ matrix.operating-system }} | |
| strategy: | |
| matrix: | |
| include: | |
| - operating-system: ubuntu-latest | |
| python-version: 3.11 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Mambaforge | |
| uses: conda-incubator/setup-miniconda@v3 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| miniforge-version: latest | |
| channels: conda-forge | |
| environment-file: environment.yml | |
| - name: run tests | |
| shell: bash -l {0} | |
| run: | | |
| pip install -e . | |
| pip install pytest | |
| pip install pytest-cov | |
| pytest tests/ | |
| cd examples/example_01 | |
| #calphy_kernel -i input.yaml -k 0 -s True |