Add "status" command #103
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: Linting | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint_docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: pip install -U rstcheck doc8 sphinx | |
- name: Run rstcheck | |
run: rstcheck -r docs | |
- name: Run doc8 | |
run: doc8 --ignore D001 docs | |
lint_go: | |
name: Linting Go | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: stable | |
- name: golangci-lint | |
# https://github.com/golangci/golangci-lint-action | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: v1.61 |