Skip to content

feat: adding goreleaser #56

feat: adding goreleaser

feat: adding goreleaser #56

Workflow file for this run

name: Lint
on:
pull_request:
branches: [main]
permissions:
contents: read
jobs:
format:
name: Format
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6
with:
go-version-file: 'go.mod'
cache: true
- uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3
with:
terraform_wrapper: false
- run: make format
- name: Check for changes
run: git diff HEAD --exit-code --color