Skip to content

Commit 06c428d

Browse files
committed
Add Linux CI
1 parent 3d6bd46 commit 06c428d

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/CI.yml

+19
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,22 @@ jobs:
2525
run: dotnet publish -r ${{ matrix.target }}
2626
- name: Run tests
2727
run: dotnet test
28+
29+
build-linux:
30+
31+
runs-on: ubuntu-22.04
32+
strategy:
33+
matrix:
34+
dotnet-version: [ '8.x' ]
35+
target: [ 'linux-x64' ]
36+
37+
steps:
38+
- uses: actions/checkout@v4
39+
- name: Setup dotnet ${{ matrix.dotnet-version }}
40+
uses: actions/setup-dotnet@v3
41+
with:
42+
dotnet-version: ${{ matrix.dotnet-version }}
43+
- name: Build ${{ matrix.target }}
44+
run: dotnet publish -r ${{ matrix.target }}
45+
- name: Run tests
46+
run: dotnet test

0 commit comments

Comments
 (0)