Skip to content

Bump the go_modules group with 4 updates #45

Bump the go_modules group with 4 updates

Bump the go_modules group with 4 updates #45

Workflow file for this run

name: Test
on:
push:
branches:
- main
tags:
- '*'
pull_request:
branches:
- main
workflow_dispatch:
jobs:
unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '1.18'
- uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Test
run: |-
go test \
-count=1 \
-race \
-timeout=10m \
-shuffle=on \
./...