doc: Add Q&A link to board #175
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
on: ["pull_request"] | |
name: Static checks | |
jobs: | |
static-checks: | |
runs-on: ubuntu-22.04 | |
env: | |
GOPATH: ${{ github.workspace }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
path: ./src/github.com/${{ github.repository }} | |
- name: Install system dependencies | |
run: | | |
sudo apt-get -y install moreutils hunspell hunspell-en-gb hunspell-en-us pandoc | |
- name: Running static checks | |
run: | | |
export PATH=${GOPATH}/bin:${PATH} | |
./src/github.com/${{ github.repository }}/.ci/static-checks.sh |