-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (28 loc) · 748 Bytes
/
Copy pathci.yml
File metadata and controls
35 lines (28 loc) · 748 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
name: Application CI
on:
pull_request:
branches:
- master
push:
branches:
- master
permissions:
contents: read
concurrency:
group: dnp-tester-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: windows-2022
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET 8
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore application
run: dotnet restore Dnp3MasterTester/Dnp3MasterTester.csproj
- name: Build application
run: dotnet build Dnp3MasterTester/Dnp3MasterTester.csproj -c Debug --no-restore -p:ContinuousIntegrationBuild=true