build(deps-dev): bump mkdocs-material from 9.5.39 to 9.5.40 #427
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
# We should restore the cache and remove extra requirements installations after this is resolved https://github.com/actions/setup-python/issues/182 | |
name: Tests | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["*"] | |
workflow_dispatch: | |
inputs: | |
release: | |
description: 'Release package' | |
required: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup python | |
uses: actions/setup-python@v5 | |
with: | |
cache: "pip" | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
- name: Set Cache | |
uses: actions/cache@v4 | |
id: cache # name for referring later | |
with: | |
path: .venv/ | |
# The cache key depends on poetry.lock | |
key: ${{ runner.os }}-cache-${{ hashFiles('poetry.lock') }} | |
restore-keys: | | |
${{ runner.os }}-cache- | |
${{ runner.os }}- | |
- name: Install Dependencies | |
# if: steps.cache.outputs.cache-hit != 'true' | |
run: | | |
python -m pip install -U pip poetry | |
poetry --version | |
poetry config --local virtualenvs.in-project true | |
poetry install | |
- name: Test and Lint | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "GitHub Action" | |
./scripts/test | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
env_vars: OS,PYTHON | |
fail_ci_if_error: true | |
files: ./coverage.xml | |
name: codecov-umbrella | |
token: ${{ secrets.CODECOV_TOKEN }} | |
verbose: true |