Skip to content

DXE-4618 Release/v2.0.0 #30

DXE-4618 Release/v2.0.0

DXE-4618 Release/v2.0.0 #30

Workflow file for this run

name: build
on:
push:
branches:
- "*"
pull_request:
branches:
- master
- v1
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version-file: 'go.mod'
- name: Setup terraform
uses: hashicorp/setup-terraform@v2
with:
terraform_version: 1.1.7
- name: Fmt check
run: make fmt-check
- name: Linter check
run: make lint
- name: Run terraform-fmt-check
run: make terraform-fmt
- name: Run terraform lint
run: make terraform-lint
- name: Run tests
run: make test