chore(deps): update dependency virtualenv to v20.29.1 #136
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
name: Style | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: "0 0 * * 1" | |
workflow_dispatch: | |
jobs: | |
pre-commit: | |
name: Pre-Commit Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Install pre-commit | |
run: pipx install --force poetry==1.8.5 | |
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5 | |
with: | |
python-version: '3.11' | |
cache: 'poetry' | |
- name: Install dependencies | |
run: poetry install | |
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4 | |
env: | |
cache-name: cache-pre-commit | |
with: | |
path: ~/.cache/pre-commit | |
key: ${{ env.cache-name }}-${{ hashFiles('.pre-commit-config.yaml') }} | |
- name: Run pre-commit | |
run: SKIP=poetry-lock poetry run pre-commit run --show-diff-on-failure --all-files | |
broken-links: | |
name: Broken Links Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Markup Link Checker (mlc) | |
uses: becheran/mlc@e6970d026408be89da36f5a8dc07b77d5b582735 # v0.19.0 |