Skip to content

updating go builder action in pipeline #7

updating go builder action in pipeline

updating go builder action in pipeline #7

Workflow file for this run

name: Validate on Pull Request
on:
pull_request:
types: [ opened, reopened, synchronize ]
jobs:
lint:
name: Lint files
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.23.0'
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
skip-cache: true
args: --timeout=30m
test:
name: Run tests
runs-on: 'ubuntu-22.04'
needs: lint
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.23.0'
- run: go test -v -cover ./...