Simplify CI workflows and fix gosec import path #6
This file contains hidden or 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: CI | |
on: | |
push: | |
branches: [ main, develop ] | |
pull_request: | |
branches: [ main, develop ] | |
env: | |
GO_VERSION: '1.24.5' | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go-version: [1.24.4, 1.24.5] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Go ${{ matrix.go-version }} | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go-version }} | |
cache: true | |
- name: Install dependencies | |
run: go mod download | |
- name: Run tests | |
run: | | |
go test -v -race -coverprofile=coverage.out -covermode=atomic ./... | |
go tool cover -func=coverage.out | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
file: ./coverage.out | |
fail_ci_if_error: false | |
quality: | |
name: Code Quality | |
runs-on: ubuntu-latest | |
needs: [test] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
cache: true | |
- name: Install tools | |
run: | | |
go install golang.org/x/lint/golint@latest | |
go install honnef.co/go/tools/cmd/staticcheck@latest | |
go install github.com/securego/gosec/v2/cmd/gosec@latest | |
- name: Run go fmt check | |
run: | | |
if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then | |
echo "Code is not formatted. Please run 'go fmt ./...'" | |
gofmt -s -d . | |
exit 1 | |
fi | |
- name: Run go vet | |
run: go vet ./... | |
- name: Run golint | |
run: golint -set_exit_status ./... | |
- name: Run staticcheck | |
run: staticcheck ./... | |
- name: Run gosec | |
run: gosec ./... | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
needs: [test, quality] | |
strategy: | |
matrix: | |
goos: [linux, windows, darwin] | |
goarch: [amd64, arm64] | |
exclude: | |
- goos: windows | |
goarch: arm64 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
cache: true | |
- name: Build | |
env: | |
GOOS: ${{ matrix.goos }} | |
GOARCH: ${{ matrix.goarch }} | |
CGO_ENABLED: 0 | |
run: go build -v ./... |