Skip to content

build(deps-dev): bump mkdocs from 1.5.2 to 1.5.3 #1229

build(deps-dev): bump mkdocs from 1.5.2 to 1.5.3

build(deps-dev): bump mkdocs from 1.5.2 to 1.5.3 #1229

Workflow file for this run

name: Python package
on: [ workflow_dispatch, pull_request ]
jobs:
python-check:
strategy:
matrix:
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
platform: [ ubuntu-20.04, macos-latest, windows-latest ]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
# pin poetry to 1.3.2 due to https://github.com/python-poetry/poetry/issues/7611
python -m pip install -U pip poetry==1.3.2
poetry --version
poetry install
- name: Run tests and linters
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Action"
./scripts/test
shell: bash
- name: Upload coverage to Codecov
if: runner.os == 'Linux'
uses: codecov/codecov-action@v3
with:
token: ${{secrets.CODECOV_TOKEN}}
file: ./coverage.xml
flags: unittests
name: codecov-umbrella