Skip to content

build(deps): bump github.com/shoenig/go-conceal from 0.5.0 to 0.5.1 #86

build(deps): bump github.com/shoenig/go-conceal from 0.5.0 to 0.5.1

build(deps): bump github.com/shoenig/go-conceal from 0.5.0 to 0.5.1 #86

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