Skip to content

chore(deps): bump actions/cache from 3.3.1 to 3.3.2 #260

chore(deps): bump actions/cache from 3.3.1 to 3.3.2

chore(deps): bump actions/cache from 3.3.1 to 3.3.2 #260

Workflow file for this run

name: Verify
on:
pull_request:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.19.x
- uses: actions/cache@v3.3.2
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-test-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-test-go-${{ hashFiles('**/go.sum') }}
- name: Run make verify
run: |
make verify