Merge pull request #1149 from festim-dev/add-ferrero-paper #1759
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: Conda CI | |
| on: [pull_request, push] | |
| jobs: | |
| run-tests: | |
| name: run-tests (fenics-dolfinx v${{ matrix.dolfinx }}) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| dolfinx: ['0.9.0', '0.10.0'] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Set up Conda | |
| uses: conda-incubator/setup-miniconda@v4 | |
| with: | |
| activate-environment: myenv | |
| miniforge-version: latest | |
| # use-mamba: true | |
| channels: conda-forge | |
| - name: Create Conda environment | |
| shell: bash -l {0} | |
| run: | | |
| conda install -c conda-forge python pip fenics-dolfinx=${{ matrix.dolfinx }} scifem adios4dolfinx | |
| - name: Install local package and dependencies | |
| shell: bash -l {0} | |
| run: | | |
| python -m pip install .[test] | |
| - name: Run tests | |
| shell: bash -l {0} | |
| run: | | |
| pytest test/ --cov festim --cov-report xml --cov-report term | |
| - name: Upload to codecov | |
| uses: codecov/codecov-action@v6 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| files: ./coverage.xml |