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.
1 parent 031170e commit 3e382daCopy full SHA for 3e382da
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,20 @@
1
+name: CI
2
+on:
3
+ push:
4
+ branches: [develop]
5
+ pull_request:
6
7
+ workflow_dispatch:
8
+jobs:
9
+ build-and-test:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - uses: actions/setup-dotnet@v4
14
+ with:
15
+ dotnet-version: '10.0.x'
16
+ - run: dotnet restore
17
+ - run: dotnet build --no-restore -c Release
18
+ - run: dotnet test --no-build -c Release --no-restore
19
+ env:
20
+ DOTNET_CLI_TELEMETRY_OPTOUT: 1
0 commit comments