-
Notifications
You must be signed in to change notification settings - Fork 9
46 lines (36 loc) · 942 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
39
40
41
42
43
44
45
46
on: [push, pull_request]
name: Test and Build
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
go-version: [1.17.x]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Verify versions
run: go version
- name: Cache build artifacts
id: cache-go
uses: actions/cache@v2
with:
path: |
~/go/pkg/mod
${{ env.GOROOT }}
key: ${{ runner.os }}-go-${{ matrix.go-version }}
- name: Install dependencies
run: go get
working-directory: ./crisp
- name: Build code
run: go build
working-directory: ./crisp
- name: Test code
run: go test
working-directory: ./crisp