Scheduled monthly dependency update for August #79
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 pre-commit" | |
steps: | |
- uses: "actions/checkout@v2" | |
- uses: "actions/setup-python@v2" | |
with: | |
python-version: "3.11" | |
- name: "Install dependencies" | |
run: | | |
pip install pre-commit | |
- name: "Run pre-commit" | |
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 pre-commit" | |
run: "make docstr" |