Skip to content

build(deps): bump github.com/hashicorp/go-set from 0.1.13 to 0.1.14 #88

build(deps): bump github.com/hashicorp/go-set from 0.1.13 to 0.1.14

build(deps): bump github.com/hashicorp/go-set from 0.1.13 to 0.1.14 #88

Workflow file for this run

name: Run CI Tests
on: [push]
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: golangci/golangci-lint-action@v3
with:
version: v1.51.1
skip-cache: true
run-tests:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-20.04
- ubuntu-22.04
- macos-12
- windows-2022
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
- uses: hashicorp/setup-golang@v1
with:
version-file: go.mod
- name: Run Go Vet
run: |
make vet
- name: Run Go Test
run: |
make test