forked from dedis/dela
-
Notifications
You must be signed in to change notification settings - Fork 1
69 lines (62 loc) · 1.66 KB
/
go_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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: Go test
on:
push:
branches: [ main ]
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
test:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{matrix.platform}}
env:
LLVL: trace
steps:
- name: Set up Go ^1.19
uses: actions/setup-go@v3
with:
go-version: ^1.19
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Test without coverage
env:
CRY_LVL: "warn"
# if: matrix.platform == 'macos-latest' || matrix.platform == 'windows-latest'
run: make test
# - name: Test with coverage
# env:
# CRY_LVL: "warn"
# if: matrix.platform == 'ubuntu-latest'
# run: make coverage
#
# - name: Sonarcloud scan
# if: matrix.platform == 'ubuntu-latest'
# uses: sonarsource/sonarcloud-github-action@master
# with:
# args: >
# -Dsonar.organization=dedis
# -Dsonar.projectKey=dedis_dela
# -Dsonar.go.tests.reportPaths=report.json
# -Dsonar.go.coverage.reportPaths=profile.cov
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
#
# - name: Send coverage
# if: matrix.platform == 'ubuntu-latest'
# uses: shogo82148/actions-goveralls@v1
# with:
# path-to-profile: profile.cov
# parallel: true
# notifies that all test jobs are finished.
# finish:
# needs: test
# runs-on: ubuntu-latest
# steps:
# - uses: shogo82148/actions-goveralls@v1
# with:
# parallel-finished: true