Skip to content

updating production branch #293

updating production branch

updating production branch #293

Workflow file for this run

name: Lint and Test Build
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Run unit tests
run: go test ./...
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: golangci/golangci-lint-action@v4
with:
version: v1.57
args: --timeout 5m
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Run goreleaser
uses: goreleaser/goreleaser-action@v5
with:
args: build --snapshot