Skip to content

Commit 332834d

Browse files
authored
Create ci-linux.yml
1 parent 921f742 commit 332834d

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.github/workflows/ci-linux.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Linux CI
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
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

Comments
 (0)