Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

[Dependabot]: Bump mkdocs-material from 9.5.39 to 9.5.40 #229

[Dependabot]: Bump mkdocs-material from 9.5.39 to 9.5.40

[Dependabot]: Bump mkdocs-material from 9.5.39 to 9.5.40 #229

Workflow file for this run

name: Ruff & Mypy
on: [push, pull_request]
jobs:
Clean:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Cache Poetry dependencies
uses: actions/cache@v4
with:
path: ~/.cache/pypoetry
key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }}
restore-keys: |
${{ runner.os }}-poetry-
- name: Install dependencies
run: |
poetry install
- name: Run clean script on AniLinkPy directory
run: |
poetry run clean --no-fix
- name: Run clean script on tests directory
run: |
poetry run clean tests --no-fix
- name: Run clean script on scripts.py file
run: |
poetry run clean scripts.py --no-fix