Skip to content

Add "status" command #103

Add "status" command

Add "status" command #103

Workflow file for this run

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