build(deps): bump follow-redirects from 1.15.5 to 1.15.6 in /dsv #156
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: test | |
on: | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
workflow_call: | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3 | |
# https://github.com/magnetikonline/action-golang-cache | |
- name: Setup Golang with cache | |
uses: magnetikonline/action-golang-cache@797f193169d3c8ba6f60d90f50ecdadd2583fbd8 # tag=v3 | |
with: | |
go-version-file: go.mod | |
- name: mage-tidy | |
uses: magefile/mage-action@3b833fb24c0d19eed3aa760b9eb285b4b84f420f # v2 | |
with: | |
version: latest | |
args: go:tidy | |
- name: mage-test | |
uses: magefile/mage-action@3b833fb24c0d19eed3aa760b9eb285b4b84f420f # v2 | |
with: | |
version: latest | |
args: go:testsum ./... | |
env: | |
# Race conditions will be hit due to the cli driven tasks and binaries being called. | |
GOTEST_DISABLE_RACE: 1 |