Add Spectral scan to github workflow #750
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: Build | |
on: | |
pull_request: | |
branches: [ main, release-*] | |
push: | |
branches: [ main, test*, release-*] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.21 | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.21 | |
id: go | |
- name: Config credentials | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }} | |
run: | | |
git config --global url."https://git:[email protected]".insteadOf "https://github.com" | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v1 | |
- name: Install and run Spectral CI | |
env: | |
SPECTRAL_DSN: ${{ secrets.SPECTRAL_DSN }} | |
uses: spectralops/spectral-github-action@v3 | |
with: | |
spectral-dsn: ${{ env.SPECTRAL_DSN }} | |
spectral-args: scan --ok --include-tags base,audit | |
- name: Run markdown link check | |
uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
use-quiet-mode: 'yes' | |
- name: go cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Cache linting | |
uses: actions/cache@v3 | |
with: | |
path: ${{ runner.temp }}/lint_cache | |
key: ${{ runner.os }}-lint-cache-2 | |
- name: Setup dependencies | |
run: | | |
make tools | |
echo "${PWD}/hack/tools/bin" >> $GITHUB_PATH | |
- name: Run lint | |
run: | | |
make lint | |
- name: Run make verify | |
run: | | |
make verify | |
- name: Cross build | |
run: | | |
make cross-build |