-
Notifications
You must be signed in to change notification settings - Fork 5
55 lines (44 loc) · 1.08 KB
/
build-ubuntu.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
name: build-ubuntu
on:
push:
paths-ignore:
- "**.md"
- LICENSE
branches:
- "master"
pull_request:
paths-ignore:
- "**.md"
- LICENSE
branches:
- master
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Init
run: chmod +x ./build.sh
- name: Install NuGet
uses: NuGet/setup-nuget@v1.0.5
- name: Setup Testspace
uses: testspace-com/setup-testspace@v1
with:
domain: ${{github.repository_owner}}
- name: Install .NET 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: "6.0.x"
- name: Install .NET 7
uses: actions/setup-dotnet@v1
with:
dotnet-version: "7.0.x"
- name: Build
run: ./build.sh --target build
- name: Run Tests
run: ./build.sh --target tests --skipFunctionalTest false --exclusive
- name: Push result to Testspace server
run: |
testspace [linux]**/*.trx
if: always()