-
-
Notifications
You must be signed in to change notification settings - Fork 24
37 lines (28 loc) · 758 Bytes
/
main.yml
File metadata and controls
37 lines (28 loc) · 758 Bytes
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
name: Solution
on:
push:
branches:
- "main"
pull_request:
branches:
- "*"
jobs:
Build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET v6.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
include-prerelease: true
- name: Setup .NET Core v3.1
uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.x'
- name: Restore NuGet
run: dotnet restore ./Source
- name: Build Android
run: msbuild ./Source/DotNetGraphQL.Mobile.Android /restore
- name: Build API
run: dotnet build ./Source/DotNetGraphQL.API -c Release