-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (39 loc) · 942 Bytes
/
ci.yaml
File metadata and controls
46 lines (39 loc) · 942 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
37
38
39
40
41
42
43
44
45
46
name: Build Smoke Test
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Build solution
run: dotnet build
working-directory: ./Swapper
env:
Configuration: Debug
- name: Run tests
run: dotnet test
env:
Configuration: Debug
# these do not actually publish anything; they are just ensuring the publish
# profiles are working
- name: Publish (x64)
run: dotnet publish
working-directory: ./Swapper
env:
Configuration: Release
PublishProfile: folder-x64
- name: Publish (x86)
run: dotnet publish
working-directory: ./Swapper
env:
Configuration: Release
PublishProfile: folder-x86