CI #372
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: CI | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| pull_request: | |
| branches: | |
| - "*" | |
| schedule: | |
| - cron: "0 13 * * 1" | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| name: Build (${{ matrix.python-version }} | ${{ matrix.os }}) | |
| if: github.repository == 'xgcm/aerobulk-python' | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 30 | |
| defaults: | |
| run: | |
| shell: bash -l {0} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: ["ubuntu-latest"] | |
| python-version: ["3.8", "3.9", "3.10", "3.11"] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - name: Create conda environment | |
| uses: mamba-org/provision-with-micromamba@main | |
| with: | |
| cache-downloads: true | |
| micromamba-version: 'latest' | |
| environment-file: ci/environment.yml | |
| extra-specs: | | |
| python=${{ matrix.python-version }} | |
| - name: Install aerobulk-python | |
| run: | | |
| python -m pip install -e . --no-deps | |
| conda list | |
| - name: Run Tests | |
| run: | | |
| pytest -vv --cov=./ --cov-report=xml | |
| - name: Upload code coverage to Codecov | |
| uses: codecov/codecov-action@v3.1.1 | |
| with: | |
| file: ./coverage.xml | |
| flags: unittests | |
| env_vars: OS,PYTHON | |
| name: codecov-umbrella | |
| fail_ci_if_error: false |