Skip to content

chore: use docker_v2 configuration for goreleaser #224

chore: use docker_v2 configuration for goreleaser

chore: use docker_v2 configuration for goreleaser #224

Workflow file for this run

name: Main
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
main:
name: Main Process
runs-on: ubuntu-latest
env:
GO_VERSION: stable
GOLANGCI_LINT_VERSION: v2.6.1
CGO_ENABLED: 0
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version: ${{ env.GO_VERSION }}
- name: Check and get dependencies
run: |
go mod download
go mod tidy
git diff --exit-code go.mod
git diff --exit-code go.sum
- name: Install golangci-lint ${{ env.GOLANGCI_LINT_VERSION }}
uses: golangci/[email protected]
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}
install-only: true
- name: Make
run: make