Skip to content

Commit

Permalink
Update workflow file to support recursive.
Browse files Browse the repository at this point in the history
  • Loading branch information
sextondjc committed Dec 1, 2024
1 parent e688ab2 commit 3cba1e8
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@ jobs:
steps:
- uses: actions/checkout@v4
name: Setup dotnet ${{ matrix.dotnet-version }}

with:
submodules: recursive

- name: Initialize submodules
run: git submodule update --init --recursive

- uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet-version }}
Expand Down Expand Up @@ -67,7 +72,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
with:
submodules: recursive
- name: Setup .NET ${{ matrix.dotnet-version }}


uses: actions/setup-dotnet@v4
- name: Run tests
run: dotnet test --configuration Release
Expand Down

0 comments on commit 3cba1e8

Please sign in to comment.