Skip to content

build(deps): bump github.com/shoenig/test from 1.7.0 to 1.7.1 #114

build(deps): bump github.com/shoenig/test from 1.7.0 to 1.7.1

build(deps): bump github.com/shoenig/test from 1.7.0 to 1.7.1 #114

Workflow file for this run

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