Skip to content

⬆️ Bump mkdocs-material from 8.0.5 to 8.2.11 #196

⬆️ Bump mkdocs-material from 8.0.5 to 8.2.11

⬆️ Bump mkdocs-material from 8.0.5 to 8.2.11 #196

Workflow file for this run

name: Lint
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install poetry
run: |
python -m pip install --upgrade pip
pip install poetry
- uses: actions/cache@v2
id: cache
with:
path: ~/.cache/pypoetry
key: ${{ hashFiles('poetry.lock') }}
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: poetry install
- name: Lint
run: make lint