-
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (30 loc) · 873 Bytes
/
build-and-test.yml
File metadata and controls
36 lines (30 loc) · 873 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
name: Build and test
on:
push:
branches:
- develop
- master
pull_request:
#permissions:
#pull-requests: write
#contents: write
jobs:
build-and-test:
runs-on: windows-latest # Required for some (WPF) projects
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
id: checkout
with:
fetch-depth: 0
- name: Setup .NET Core
id: setup-dotnet
uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 # v5.0.1
with:
dotnet-version: '10.0.x'
- name: Cake Action
id: cake-action
uses: cake-build/cake-action@d218f1133bb74a1df0b08c89cfd8fc100c09e1a0 #v3.0.1
with:
target: BuildAndTest
arguments: |
IsCiBuild: true