Skip to content

Bump github.com/hashicorp/hcl/v2 from 2.22.0 to 2.23.0 #241

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

Bump github.com/hashicorp/hcl/v2 from 2.22.0 to 2.23.0 #241

Workflow file for this run

name: build-and-test-tablizer
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
version: ['1.22']
# windows-latest removed, see:
# https://github.com/rogpeppe/go-internal/issues/284
os: [ubuntu-latest, macos-latest]
name: Build
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go ${{ matrix.version }}
uses: actions/setup-go@v5
with:
go-version: '${{ matrix.version }}'
id: go
- name: checkout
uses: actions/checkout@v4
- name: build
run: make
- name: test
run: make test
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: 1.22
- uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
skip-cache: true