Skip to content

🌱 Bump actions/cache from 3.3.1 to 3.3.2 #85

🌱 Bump actions/cache from 3.3.1 to 3.3.2

🌱 Bump actions/cache from 3.3.1 to 3.3.2 #85

Workflow file for this run

name: Test
on:
pull_request:
paths:
- '.github/workflows/**'
- '**.go'
- 'Makefile'
- 'go.**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./src/github.com/${{ github.repository }}
steps:
- name: Checkout code
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
with:
path: ./src/github.com/${{ github.repository }}
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Cache Go modules
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- name: Test
run: make test