Skip to content

read the docs update #143

read the docs update

read the docs update #143

Workflow file for this run

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/hadolint-action@v1.2.1
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"