Skip to content

Lupl/currymodel aliasing support #37

Lupl/currymodel aliasing support

Lupl/currymodel aliasing support #37

Workflow file for this run

name: tests
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: uv sync
- name: Run tests
run: uv run pytest tests
- name: Run pyest-cov
run: |
uv run pytest --cov lupl/ --cov-report xml
- name: Upload coverage data to coveralls
uses: coverallsapp/github-action@v2.2.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}