Skip to content
This repository has been archived by the owner on Jul 15, 2024. It is now read-only.

docs: fix RTD build error #915

docs: fix RTD build error

docs: fix RTD build error #915

Workflow file for this run

name: static check
on:
push:
branches:
- 'master'
pull_request:
branches:
- 'master'
jobs:
gofmt:
name: Ensure that code is gofmt-ed
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: check
uses: grandcolline/[email protected]
with:
run: fmt
comment: false
lint-docs:
name: Ensure docs are linted
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
pip install -r docs/requirements.txt
- name: Lint docs
run: |
make lint-docs