-
Notifications
You must be signed in to change notification settings - Fork 18
26 lines (23 loc) · 951 Bytes
/
build.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
name: BuildTest
on: []
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.x'
- name: Install VoiceCraft.Core Dependencies
run: dotnet workload restore ./VoiceCraft.Core/VoiceCraft.Core.csproj
- name: Build VoiceCraft.Core
run: dotnet build ./VoiceCraft.Core/VoiceCraft.Core.csproj
- name: Install VoiceCraft.Network Dependencies
run: dotnet workload restore ./VoiceCraft.Network/VoiceCraft.Network.csproj
- name: Build VoiceCraft.Network
run: dotnet build ./VoiceCraft.Network/VoiceCraft.Network.csproj
- name: Install VoiceCraft.Server Dependencies
run: dotnet workload restore ./VoiceCraft.Server/VoiceCraft.Server.csproj
- name: Build VoiceCraft.Server
run: dotnet build ./VoiceCraft.Server/VoiceCraft.Server.csproj