-
Notifications
You must be signed in to change notification settings - Fork 11
39 lines (39 loc) · 973 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
name: CI
on:
push:
branches:
- master
- release-*
pull_request:
workflow_dispatch:
env:
DOTNET_NOLOGO: true
jobs:
build:
name: Windows
runs-on: windows-2022
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Setup .NET SDK
uses: actions/[email protected]
with:
dotnet-version: 8.0.x
dotnet-quality: 'preview'
- name: Build
run: dotnet build src --configuration Release
- name: Upload packages
uses: actions/[email protected]
with:
name: NuGet packages
path: nugets/
retention-days: 7
- name: Install SQL Server
uses: Particular/[email protected]
with:
connection-string-env-var: SQLServerConnectionString
catalog: nservicebus
- name: Run tests
uses: Particular/[email protected]