Skip to content

build(deps): bump typer in the production-dependencies group #129

build(deps): bump typer in the production-dependencies group

build(deps): bump typer in the production-dependencies group #129

Workflow file for this run

name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
dependency-extras: ["", "-E all"]
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install "poetry==1.8.4"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "poetry"
- name: Install dependencies
run: |
poetry install --with dev ${{ matrix.dependency-extras }}
sudo apt install restic
- name: Check formatting with black
run: |
poetry run black --check .
- name: Check import ordering with ruff
run: |
poetry run ruff check --output-format=github --select I .
- name: Check static typing with mypy
run: poetry run mypy .
- name: Lint with ruff
run: |
poetry run ruff check --output-format=github .
- name: Test with pytest
run: |
poetry run pytest --junitxml=junit/test-results.xml --cov-report=xml --cov-report=html
check:
if: always()
needs:
- build
runs-on: ubuntu-latest
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}