Skip to content

chore(deps): update dependency typer to v0.12.4 #27

chore(deps): update dependency typer to v0.12.4

chore(deps): update dependency typer to v0.12.4 #27

Workflow file for this run

name: Test and release job
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint-and-test:
name: Lint and test on Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install hatch hatch-vcs
- run: hatch run lint
- run: hatch run +py=${{ matrix.python-version }} test:cov # matches entries in pyproject.toml