-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (40 loc) · 1.17 KB
/
server_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
name: Server test
on:
push:
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
strategy:
matrix:
# platform: [ubuntu-latest, macos-latest, windows-latest]
platform: [ubuntu-latest]
runs-on: ${{matrix.platform}}
defaults:
run:
working-directory: ./server
env:
LLVL: trace
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of Sonar analysis
- name: Set up Go 1.21
uses: actions/setup-go@v4
with:
go-version: "=1.21"
- name: Test without coverage
if: matrix.platform == 'macos-latest' || matrix.platform == 'windows-latest'
run: make test
- name: Test with coverage
if: matrix.platform == 'ubuntu-latest'
run: make coverage
- name: Sonarcloud scan
if: matrix.platform == 'ubuntu-latest'
uses: SonarSource/sonarcloud-github-action@master
with:
projectBaseDir: server
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}