Skip to content

Update publish.yaml #664

Update publish.yaml

Update publish.yaml #664

Workflow file for this run

name: pytest
on:
pull_request:
push:
branches:
- main
schedule:
- cron: '14 3 * * 1' # at 03:14 on Monday.
jobs:
pytest:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version:
- "3.13"
- "3.12"
- "3.11"
- "3.10"
os:
- ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: |
uv sync --all-extras --dev
- name: Run pytest
run: |
uv run python --version
uv run coverage run -m pytest
uv run coverage lcov
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: coverage.lcov