-
Notifications
You must be signed in to change notification settings - Fork 3
39 lines (33 loc) · 983 Bytes
/
build-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
name: "Build and Test"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: "0"
- name: Setup .NET Core 8
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.x.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: |
dotnet build Jinaga --no-restore
dotnet build Jinaga.UnitTest --no-restore
dotnet build Jinaga.Test --no-restore
dotnet build Jinaga.Notebooks --no-restore
dotnet build Jinaga.Tool --no-restore
dotnet build Jinaga.Store.SQLite --no-restore
dotnet build Jinaga.Store.SQLite.Test --no-restore
dotnet build Jinaga.Maui --no-restore
- name: Test
run: |
dotnet test Jinaga.Test --no-build --verbosity normal
dotnet test Jinaga.Store.SQLite.Test --no-build --verbosity normal