-
Notifications
You must be signed in to change notification settings - Fork 0
29 lines (24 loc) · 827 Bytes
/
Copy pathPR.check.yml
File metadata and controls
29 lines (24 loc) · 827 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
name: PR. Build
on:
workflow_dispatch:
pull_request:
branches: [ "*" ]
jobs:
build:
runs-on: windows-latest # For a list of available runner types, refer to
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
env:
Solution_Name: Translumo-LLM.sln
SkipBinariesExtract: true # Skip download additional binaries, those are set in cproj as a prebuilt step
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Build the application
run: dotnet build $env:Solution_Name /p:Configuration=Release