Skip to content

Commit

Permalink
Split ci jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
atrakic committed Dec 12, 2024
1 parent 3056f48 commit db380ff
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,27 @@ on:
pull_request:

jobs:
ci:
dotnet-ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 9.0.x

- name: Install dependencies
run: dotnet restore

- name: Build
run: dotnet build --configuration Release --no-restore

- name: Test
run: dotnet test --no-restore --verbosity normal

docker-ci:
runs-on: ubuntu-latest
needs: dotnet-ci
steps:
- uses: actions/checkout@v4
- name: Build the stack
Expand Down

0 comments on commit db380ff

Please sign in to comment.