Skip to content

ci: added concurrency for tests + lint and format #7

ci: added concurrency for tests + lint and format

ci: added concurrency for tests + lint and format #7

Workflow file for this run

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