New default value for DerivedQuantities.show_units
#791
This file contains 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: CI | |
on: [pull_request, push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Conda | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
activate-environment: myenv | |
# mamba-version: "*" | |
channels: conda-forge, defaults | |
- name: Create Conda environment | |
shell: bash -l {0} | |
run: | | |
# conda upgrade --strict-channel-priority -c conda-forge --all | |
conda install -c conda-forge fenics numpy=1.24 | |
- name: Install dependencies | |
shell: bash -l {0} | |
run: | | |
pip install pytest pytest-cov | |
- name: Run tests | |
shell: bash -l {0} | |
run: | | |
pytest test/ --cov festim --cov-report xml --cov-report term | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |