Skip to content

build(deps): bump typer from 0.9.0 to 0.12.2 #349

build(deps): bump typer from 0.9.0 to 0.12.2

build(deps): bump typer from 0.9.0 to 0.12.2 #349

Workflow file for this run

name: Python application
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- run: pipx install poetry
- name: Install dependencies
run: |
poetry install
poetry run pre-commit install
- run: poetry run pre-commit run -a
- run: poetry run pytest --cov=cronjobs
- run: poetry run coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}