Update sphinx-rtd-theme to 3.0.0 #150
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: Lint | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
lint: | |
runs-on: "ubuntu-latest" | |
name: "Run ruff" | |
steps: | |
- uses: "actions/checkout@v2" | |
- uses: "actions/setup-python@v2" | |
with: | |
python-version: "3.12" | |
- name: "Install dependencies" | |
run: | | |
pip install poetry | |
poetry install | |
pip install types-requests | |
- name: "Run ruff" | |
run: "make lint" | |
hadolint: | |
runs-on: "ubuntu-latest" | |
name: "Hadolint Action" | |
steps: | |
- uses: actions/checkout@master | |
- name: Hadolint Action | |
uses: brpaz/[email protected] | |
with: | |
dockerfile: Dockerfile | |
docstr: | |
runs-on: "ubuntu-latest" | |
name: "Run docstr" | |
steps: | |
- uses: "actions/checkout@v2" | |
- uses: "actions/setup-python@v2" | |
with: | |
python-version: "3.11" | |
- name: "Install dependencies" | |
run: | | |
pip install docstr-coverage | |
- name: "Run docstr" | |
run: "make docstr" |