Skip to content

Set author in docs #155

Set author in docs

Set author in docs #155

Workflow file for this run

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 .