-
-
Notifications
You must be signed in to change notification settings - Fork 12
63 lines (48 loc) · 1.38 KB
/
ci.yml
File metadata and controls
63 lines (48 loc) · 1.38 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Build and test
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
workflow_dispatch:
jobs:
check-code-formatting:
runs-on: ubuntu-latest
name: Check code formating against editorconfig 🔎
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 9.0.x
- name: Install dotnet-format tool
run: dotnet tool install -g dotnet-format
- name: Check Code Format
run: dotnet-format --check
build-and-test:
needs: check-code-formatting
runs-on: ubuntu-latest
strategy:
matrix:
target-framework: [ 'net8.0', 'net9.0' ]
name: dotnet build and test targeting ${{ matrix.target-framework }} 🧪
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
8.0.x
9.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test test/Orleans.SyncWork.Tests/Orleans.SyncWork.Tests.csproj -f ${{ matrix.target-framework }} -c Release --no-build --verbosity normal --filter "Category!=LongRunning"