Skip to content

Add Terraform support for v2 dashboards #169

Add Terraform support for v2 dashboards

Add Terraform support for v2 dashboards #169

Workflow file for this run

name: PR
on:
pull_request:
branches:
- main
push:
branches:
- main
merge_group:
types:
- checks_requested
# Make sure the workflow is only ever run for the latest
# changes in the PR.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: false
- uses: golangci/golangci-lint-action@v4
with:
version: v1.64.8
install-mode: goinstall
args: --timeout=5m
build:
name: Build
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: false
- name: Run build
run: make build