Skip to content

Commit db380ff

Browse files
committed
Split ci jobs
1 parent 3056f48 commit db380ff

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,27 @@ on:
55
pull_request:
66

77
jobs:
8-
ci:
8+
dotnet-ci:
99
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- name: Setup .NET Core
13+
uses: actions/setup-dotnet@v1
14+
with:
15+
dotnet-version: 9.0.x
16+
17+
- name: Install dependencies
18+
run: dotnet restore
19+
20+
- name: Build
21+
run: dotnet build --configuration Release --no-restore
22+
23+
- name: Test
24+
run: dotnet test --no-restore --verbosity normal
25+
26+
docker-ci:
27+
runs-on: ubuntu-latest
28+
needs: dotnet-ci
1029
steps:
1130
- uses: actions/checkout@v4
1231
- name: Build the stack

0 commit comments

Comments
 (0)