Skip to content

Run golangci-lint in PRs #1181

Run golangci-lint in PRs

Run golangci-lint in PRs #1181

name: radix-operator-pr
on:
pull_request:
branches:
- master
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Install dependencies
run: go mod download
- name: Run Tests
run: CGO_ENABLED=0 GOOS=linux go test `go list ./... | grep -v "pkg/client"`
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.55.2
args: --timeout=30m --new --max-same-issues=0 --out-format=github-actions
# Add legacy checks since golangci-lint only tests changed files for now
- name: Install StaticCheck
run: go install honnef.co/go/tools/cmd/[email protected]
- name: StaticCheck
run: staticcheck `go list ./... | grep -v "pkg/client"`
- name: Go Vet
run: go vet `go list ./... | grep -v "pkg/client"`
build-operator:
name: Build-operator
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build operator image
env:
REF: ${{ github. sha }}
DOCKER_BUILDKIT: 1
run: docker build -t radix-operator:${REF##*/} -f operator.Dockerfile .
build-pipeline:
name: Build-pipeline
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build pipeline image
env:
REF: ${{ github. sha }}
DOCKER_BUILDKIT: 1
run: docker build -t radix-operator:${REF##*/} -f pipeline.Dockerfile .