Skip to content

chore(deps-dev): bump mkdocs-material from 9.4.2 to 9.4.3 #934

chore(deps-dev): bump mkdocs-material from 9.4.2 to 9.4.3

chore(deps-dev): bump mkdocs-material from 9.4.2 to 9.4.3 #934

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
tests:
name: Run Unit Tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.2.2
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Run tests with tox
run: tox
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
if: ${{ matrix.python-version == '3.11' }}
with:
fail_ci_if_error: true
lint:
name: linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- uses: psf/black@stable
with:
version: "23.7.0"
- name: flake8 Lint
uses: py-actions/flake8@v2