Skip to content

Bump actions/cache from 3 to 4 #30

Bump actions/cache from 3 to 4

Bump actions/cache from 3 to 4 #30

Workflow file for this run

name: test
# Triggers the workflow on push or pull request events
on: [push, pull_request]
jobs:
ci-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- uses: actions/setup-go@v5
with:
go-version: 1.16
- name: Run go test
run: go test -v -race