Skip to content

build(deps): bump typer from 0.13.0 to 0.14.0 #159

build(deps): bump typer from 0.13.0 to 0.14.0

build(deps): bump typer from 0.13.0 to 0.14.0 #159

Workflow file for this run

name: Pipeline
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Copy files
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install poetry
run: pip install poetry
- name: Install dependencies
run: poetry install --without doc
- name: Run tests
run: poetry run task test --cov-report=xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}