Skip to content

Bump actions/checkout from 3 to 4 (#6) #26

Bump actions/checkout from 3 to 4 (#6)

Bump actions/checkout from 3 to 4 (#6) #26

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@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- uses: actions/setup-go@v4
with:
go-version: 1.16
- name: Run go test
run: go test -v -race