forked from onflow/flow-go
-
Notifications
You must be signed in to change notification settings - Fork 0
104 lines (101 loc) · 2.54 KB
/
ci.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: CI
on:
push:
branches:
- master
- 'auto-cadence-upgrade/**'
- staging
- trying
- 'feature/**'
- 'v[0-9]+.[0-9]+'
pull_request:
branches:
- master
- 'auto-cadence-upgrade/**'
- 'feature/**'
- 'v[0-9]+.[0-9]+'
jobs:
golangci:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Build relic
run: make crypto/relic/build
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v2
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: v1.41
args: -v --build-tags relic
# https://github.com/golangci/golangci-lint-action/issues/244
skip-pkg-cache: true
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
with:
scandir: './crypto'
ignore: 'relic'
unit-test:
name: Unit Tests
strategy:
fail-fast: false
matrix:
go-version:
- 1.15
- 1.16
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout repo
uses: actions/checkout@v2
- name: Run tests
if: github.actor != 'bors[bot]'
run: make ci
- name: Run tests (Bors)
if: github.actor == 'bors[bot]'
uses: nick-invision/retry@v2
with:
timeout_minutes: 25
max_attempts: 2
command: make ci
- name: Upload coverage report
uses: codecov/codecov-action@v1
if: ${{ matrix.go-version == '1.15' }}
with:
file: ./coverage.txt
flags: unittests
name: codecov-umbrella
integration-test:
name: Integration Tests
strategy:
fail-fast: false
matrix:
go-version:
- 1.15
- 1.16
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version}}
- name: Checkout repo
uses: actions/checkout@v2
- name: Build relic
run: make crypto/relic/build
- name: Docker build
run: make docker-build-flow
- name: Run tests
if: github.actor != 'bors[bot]'
run: make ci-integration
- name: Run tests (Bors)
if: github.actor == 'bors[bot]'
uses: nick-invision/retry@v2
with:
timeout_minutes: 15
max_attempts: 2
command: make ci-integration