Bump mkdocs-macros-plugin from 1.2.0 to 1.3.7 #1204
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: Actions | |
on: | |
pull_request: | |
branches: | |
- main | |
- next | |
push: | |
branches: | |
- main | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/[email protected] | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version-file: ".python-version" | |
cache: "pip" | |
cache-dependency-path: "requirements.txt" | |
- name: Run pre-commit | |
uses: pre-commit/[email protected] | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
needs: lint | |
steps: | |
- name: Checkout the repository | |
uses: actions/[email protected] | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version-file: ".python-version" | |
cache: "pip" | |
cache-dependency-path: "requirements.txt" | |
- name: Setup | |
run: scripts/setup | |
- name: Build | |
run: scripts/build |