.github: add lint step #5557
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: i386 linux tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
lint: | |
name: Lint | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v4 | |
# Cache build tools to avoid downloading them each time | |
- uses: actions/cache@v4 | |
with: | |
path: build/cache | |
key: ${{ runner.os }}-build-tools-cache-${{ hashFiles('build/checksums.txt') }} | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.23.0 | |
cache: false | |
- name: Run linters | |
run: | | |
go run build/ci.go lint | |
go run build/ci.go check_tidy | |
go run build/ci.go check_generate | |
go run build/ci.go check_baddeps | |
build: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.23.0 | |
cache: false | |
- name: Run tests | |
run: go test -short ./... | |
env: | |
GOOS: linux | |
GOARCH: 386 |