We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 921f742 commit 332834dCopy full SHA for 332834d
1 file changed
.github/workflows/ci-linux.yml
@@ -0,0 +1,27 @@
1
+name: Linux CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "master" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - name: Setup .NET
17
+ uses: actions/setup-dotnet@v4
18
+ with:
19
+ dotnet-version: 8.0.x
20
+ - name: Restore dependencies
21
+ run: |
22
+ dotnet tool restore
23
+ dotnet paket install
24
+ - name: Build
25
+ run: ./build.sh
26
+ - name: Test
27
+ run: dotnet test --no-build --verbosity normal
0 commit comments