Skip to content

Fix website publishing workflow #150

Fix website publishing workflow

Fix website publishing workflow #150

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@v3
- 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@v2