Skip to content

build(deps-dev): bump mkdocs-material from 9.5.44 to 9.5.49 #165

build(deps-dev): bump mkdocs-material from 9.5.44 to 9.5.49

build(deps-dev): bump mkdocs-material from 9.5.44 to 9.5.49 #165

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 }}