We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a4636e6 + c989464 commit 0bc1d7bCopy full SHA for 0bc1d7b
.github/workflows/ci.yml
@@ -0,0 +1,27 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+jobs:
8
+ build-and-test:
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@v4
14
15
+ - name: Setup .NET
16
+ uses: actions/setup-dotnet@v4
17
+ with:
18
+ dotnet-version: 9.0.x
19
20
+ - name: Restore
21
+ run: dotnet restore
22
23
+ - name: Build
24
+ run: dotnet build --no-restore
25
26
+ - name: Test
27
+ run: dotnet test --no-build --verbosity normal
sparkly-server.csproj
@@ -43,4 +43,8 @@
43
<None Remove="Properties\launchSettings.json" />
44
</ItemGroup>
45
46
+ <ItemGroup>
47
+ <Content Include=".github\workflows\ci.yml" />
48
+ </ItemGroup>
49
50
</Project>
0 commit comments