-
-
Notifications
You must be signed in to change notification settings - Fork 123
77 lines (71 loc) · 1.75 KB
/
main.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
name: Build and Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET 6.0 SDK
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
- name: Install local tools
run: dotnet tool restore
- name: Paket Restore (Data)
working-directory: ./data
run: dotnet paket restore
- name: Paket Restore (Dependencies)
run: dotnet paket restore
- name: Build Tests and Binaries
run: dotnet fake run build.fsx -t "BuildTests"
- name: Upload NuGet Packages
uses: actions/upload-artifact@v3
with:
name: nuget
path: bin/*.nupkg
- name: Upload Tests
uses: actions/upload-artifact@v3
with:
name: tests
path: tests
test:
name: Test
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
needs:
- build
steps:
- uses: actions/checkout@v1
- name: Setup .NET 6.0 SDK
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
- name: Download OpenNLP.NET Tests
uses: actions/download-artifact@v3
with:
name: tests
path: tests
- name: Install local tools
run: dotnet tool restore
- name: Paket Restore (Data)
working-directory: ./data
run: dotnet paket restore
- name: Paket Restore (Dependencies)
run: dotnet paket restore
- name: Run Tests
run: dotnet fake run build.fsx -t "RunTests"
- name: Upload Test Results
uses: actions/upload-artifact@v3
with:
name: TestResults-${{ matrix.os }}
path: TestResults