diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 217f7cb..521f45d 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -16,13 +16,15 @@ jobs: steps: - uses: actions/checkout@v4 + with: + submodules: 'true' - name: Setup .NET uses: actions/setup-dotnet@v4 with: dotnet-version: 8.0.x - name: Restore dependencies - run: dotnet restore + run: dotnet restore source - name: Build - run: dotnet build --no-restore + run: dotnet build --no-restore source - name: Test - run: dotnet test --no-build --verbosity normal + run: dotnet test --no-build --verbosity normal source