We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9447233 commit 28e7cccCopy full SHA for 28e7ccc
.github/workflows/build.yml
@@ -7,20 +7,22 @@ on:
7
8
jobs:
9
build:
10
+ name: Build All Projects
11
runs-on: ubuntu-latest
12
13
strategy:
14
+ fail-fast: false
15
matrix:
16
project:
17
- SampleApp/BackEnd/BackEnd.csproj
18
- SampleApp/FrontEnd/FrontEnd.csproj
19
20
steps:
21
- name: Checkout repository
- uses: actions/checkout@v2
22
+ uses: actions/checkout@v4
23
24
- name: Setup .NET
- uses: actions/setup-dotnet@v2
25
+ uses: actions/setup-dotnet@v4
26
with:
27
dotnet-version: '9.0.x'
28
0 commit comments