-
Notifications
You must be signed in to change notification settings - Fork 593
41 lines (34 loc) · 871 Bytes
/
ci.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
name: CI
on:
pull_request:
push:
branches:
- 'master'
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout LiveSplit
uses: actions/checkout@v4
with:
submodules: recursive
repository: LiveSplit/LiveSplit
- name: Checkout LiveSplit.AutoSplitters
uses: actions/checkout@v4
with:
path: autosplitters_xml
- name: Move Autosplitters XML
run: mv -force autosplitters_xml/LiveSplit.AutoSplitters.xml .
- name: Set up .NET environment
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.x'
- name: Run tests
run: >
dotnet test
-v m
-c Release
-p:PlatformTarget=x64
-p:GenerateDocumentationFile=false
-p:DebugType=None
.\LiveSplit.sln