Skip to content

Bump the github-actions group with 2 updates #242

Bump the github-actions group with 2 updates

Bump the github-actions group with 2 updates #242

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/[email protected]
with:
version: latest
- name: Lint with ruff
run: uv run ruff check
- name: Test with pytest
run: |
uv run pytest --cov=./
- name: Upload coverage data to coveralls.io
run: |
uvx coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}