Skip to content

feat(deps): bump mvdan.cc/gofumpt from 0.4.0 to 0.5.0 #590

feat(deps): bump mvdan.cc/gofumpt from 0.4.0 to 0.5.0

feat(deps): bump mvdan.cc/gofumpt from 0.4.0 to 0.5.0 #590

Workflow file for this run

name: Test and coverage
on:
push:
paths:
- '**.go'
branches:
- master
pull_request:
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
vault-version: [1.11-ent, 1.12-ent, latest]
# max-parallel: 1
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.17
- name: go get
run: go get ./...
- name: go mod tidy
run: go mod tidy
- name: Run coverage
run: go test -v -race -coverprofile="coverage.out" -covermode=atomic ./...
env:
VAULT_VERSION: ${{ matrix.vault-version }}
VAULT_LICENSE: ${{ secrets.VAULT_LICENSE }}
- name: Upload coverage to Codecov
if: matrix.os == 'ubuntu-latest'
run: bash <(curl -s https://codecov.io/bash)