-
Notifications
You must be signed in to change notification settings - Fork 3
45 lines (36 loc) · 1.17 KB
/
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
40
41
42
43
44
45
name: "Build and Test"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: "0"
- name: Setup .NET Core 8
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x.x
- name: Set up GitHub Packages authentication
run: |
dotnet nuget update source "GitHub" --username ${{ github.actor }} --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text
- 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