Merge pull request #29 from jtmims/fix_tas #32
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: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash -l {0} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [3.7, 3.8, 3.9] | |
steps: | |
- name: Cancel previous runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- name: Checkout source | |
uses: actions/checkout@v2 | |
- name: Conda setup | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
channels: conda-forge | |
mamba-version: '*' | |
python-version: ${{ matrix.python-version }} | |
activate-environment: testing | |
auto-activate-base: false | |
- name: Set up conda environment | |
run: | | |
mamba env update -f ci/environment.yml | |
python -m pip install --no-deps -e . | |
- name: Conda list information | |
run: | | |
conda env list | |
conda list | |
#- name: Lint with flake8 | |
# run: | | |
# # stop the build if there are Python syntax errors or undefined names | |
# #flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | |
# # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | |
# flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | |
- name: Test with pytest | |
run: | | |
pytest -v mdtf_test_data | |