-
-
Notifications
You must be signed in to change notification settings - Fork 1
30 lines (23 loc) · 551 Bytes
/
ci.yml
File metadata and controls
30 lines (23 loc) · 551 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: CI Build
# Builds on every commit to verify everything compiles.
# Does NOT publish anything - just verification.
permissions:
contents: read
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-dotnet@v5
with:
dotnet-version: '8.0.x'
- name: Build Solution
run: dotnet build OpenSourceToolkit.Net.sln -c Release -p:UseLocalFlowery=false