-
Notifications
You must be signed in to change notification settings - Fork 23
38 lines (38 loc) · 955 Bytes
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Test
on:
push:
tags:
- v*
branches:
- main
pull_request:
permissions:
contents: read
jobs:
build:
name: build & test
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.19
- uses: actions/checkout@v3
- name: determine go cache paths
id: go-cache-path
run: |
echo "::set-output name=build::$(go env GOCACHE)"
echo "::set-output name=module::$(go env GOMODCACHE)"
shell: bash
- name: setup go cache
uses: actions/cache@v3
with:
path: |
${{ steps.go-cache-path.outputs.build }}
${{ steps.go-cache-path.outputs.module }}
key: ${{ runner.os }}-go-buz-cache-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-buz-cache-
- name: build
run: make build
- name: test
run: make test