2023-06-27 09:50:13 +00:00
|
|
|
name: Lint
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2023-07-11 11:23:22 +00:00
|
|
|
branches: [main, stable-1]
|
2023-06-27 09:50:13 +00:00
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
2023-10-06 14:02:46 +00:00
|
|
|
docs:
|
2023-06-27 09:50:13 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-04 16:00:01 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-06-27 09:50:13 +00:00
|
|
|
|
|
|
|
- name: Setup python
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: 3.x
|
2023-10-06 14:02:46 +00:00
|
|
|
cache: pip
|
|
|
|
cache-dependency-path: requirements.txt
|
2023-06-27 09:50:13 +00:00
|
|
|
|
|
|
|
- name: Install dependencies
|
2023-10-06 14:02:46 +00:00
|
|
|
run: make venv
|
2023-06-27 09:50:13 +00:00
|
|
|
|
2023-10-06 14:02:46 +00:00
|
|
|
- name: Lint docs
|
|
|
|
run: make lint-docs
|