Skip to content

build(deps): bump github.com/hashicorp/go-getter from 1.7.3 to 1.7.4 #170

build(deps): bump github.com/hashicorp/go-getter from 1.7.3 to 1.7.4

build(deps): bump github.com/hashicorp/go-getter from 1.7.3 to 1.7.4 #170

Workflow file for this run

name: build
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22.1
- name: Setup gotestsum
uses: autero1/[email protected]
with:
gotestsum_version: 1.6.4
- name: "go test"
run: |
rm -rf ./reports && mkdir ./reports;
gotestsum --format standard-verbose --junitfile ./reports/junit.xml --raw-command -- go test -parallel 5 --json ./...;
- name: Publish Unit Test Results
uses: EnricoMi/[email protected]
with:
commit: ${{ github.event.workflow_run.head_sha }}
files: "reports/*.xml"