Skip to content

improvements #minor #55

improvements #minor

improvements #minor #55

Workflow file for this run

# This workflow will install Python dependencies,
# then run tests over a variety of Python versions.
name: test
on:
push:
tags: [ '*' ]
pull_request:
branches: [ "main", "dev*", "feature*", "fix*"]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest] # [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
version: "latest"
python-version: ${{ matrix.python-version }}
- name: Install & Test
run: |
uv pip install ".[test]"
pytest --cov=doorway tests/
# codecov automatically merges all generated files
- uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false