Merge pull request #99 from leap-stc/copy-online-testing-for-website-… #166
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: Test data utils | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "*" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.9"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install our package & pytest | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -e . | |
python -m pip install pytest pytest-cov | |
- name: Test with pytest | |
run: | | |
pytest -vvv -s --cov=climsim_utils tests/ | |
- name: Upload Coverage to Codecov | |
uses: codecov/codecov-action@v4 |