[pre-commit.ci] pre-commit autoupdate (#38) #152
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: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: # allow manual triggering | |
schedule: | |
- cron: "0 12 1 * *" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: pip | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools wheel | |
python -m pip install flit | |
flit install --symlink --deps production --extras test | |
- name: Test with pytest | |
run: pytest --cov uscrn --cov-report xml --cov-report term-missing | |
timeout-minutes: 10 | |
- name: Upload coverage to Codecov | |
if: ${{ matrix.python-version == '3.11' }} | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./coverage.xml | |
- name: Check type annotations | |
run: | | |
mypy --non-interactive . |