Skip to content

chore(deps): bump actions/cache from 4 to 5 in the ci group (#200) #63

chore(deps): bump actions/cache from 4 to 5 in the ci group (#200)

chore(deps): bump actions/cache from 4 to 5 in the ci group (#200) #63

Workflow file for this run

name: Test
permissions:
contents: read
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Cache Go modules
uses: actions/cache@v5
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Run tests
run: make test-unit