Skip to content

Bump github.com/hashicorp/hcl/v2 from 2.21.0 to 2.22.0 #124

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

Bump github.com/hashicorp/hcl/v2 from 2.21.0 to 2.22.0 #124

Workflow file for this run

name: Tests
on:
pull_request:
paths-ignore:
- '.github/signatures/**'
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22.2
- name: Setup nbd
run: sudo modprobe nbd
- name: Test
run: go test -exec sudo -v ./...
- name: Test with Race Conditions
run: go test -race -v $(go list ./... | grep -v expose)