Skip to content

DXISSUE-2896 Fix README.md code notation #13

DXISSUE-2896 Fix README.md code notation

DXISSUE-2896 Fix README.md code notation #13

Workflow file for this run

name: build
on:
pull_request:
branches:
- master
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: 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