Skip to content

Commit

Permalink
try to fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
wilyle committed Nov 20, 2023
1 parent 52a6421 commit 4450633
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dotnet-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v3
- name: Install .NET ${DOTNET_VERSION}
- name: Install .NET ${{ env.DOTNET_VERSION }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${DOTNET_VERSION}
dotnet-version: ${{ env.DOTNET_VERSION }}
global-json-file: cloud_connectors/azure/digital_twins_connector/global.json
- name: Cache NuGet dependencies
uses: actions/cache@v3
Expand All @@ -38,7 +38,7 @@ jobs:
uses: dotnet/code-analysis@main
id: net-code-analysis
with:
dotnet-version: ${DOTNET_VERSION}
dotnet-version: ${{ env.DOTNET_VERSION }}
projects: cloud_connectors/azure/digital_twins_connector/src/core/DigitalTwinsConnector.csproj;
cloud_connectors/azure/digital_twins_connector/src/DigitalTwinsClientWrapper/DigitalTwinsClientWrapper.csproj;
cloud_connectors/azure/digital_twins_connector/tests/DigitalTwinsClientWrapper.Tests/DigitalTwinsClientWrapper.Tests.csproj;
Expand Down

0 comments on commit 4450633

Please sign in to comment.