Skip to content

Bump github.com/hashicorp/hcl/v2 from 2.20.1 to 2.22.0 #8

Bump github.com/hashicorp/hcl/v2 from 2.20.1 to 2.22.0

Bump github.com/hashicorp/hcl/v2 from 2.20.1 to 2.22.0 #8

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Run tests
run: make test
- name: Run build
run: make build