This commit is contained in:
skidoodle 2024-09-07 19:14:47 +02:00
parent d4ac1c0dd8
commit d9e21d04f0

View file

@ -18,6 +18,14 @@ jobs:
with: with:
go-version: '1.22.4' go-version: '1.22.4'
- name: Cache Go Modules
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Build - name: Build
run: go build -v ./... run: go build -v ./...