forked from notaryproject/notation
-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (43 loc) · 1.18 KB
/
build.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
name: build
on:
push:
pull_request:
jobs:
build:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
name: Continuous Integration
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.20']
fail-fast: true
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Check out code
uses: actions/checkout@v3
- name: Cache Go modules
uses: actions/cache@v3
id: go-mod-cache
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Get dependencies
run: make download
- name: Build
run: make build
- name: Run unit tests
run: make test
- name: Run e2e tests
run: |
if [[ $GITHUB_REF_NAME == v* && $GITHUB_REF_TYPE == tag ]]; then
make e2e
else
make e2e-covdata
fi
- name: Upload coverage to codecov.io
uses: codecov/codecov-action@v3