Skip to content

Commit fd07171

Browse files
committed
Use net6.0 framework in test environment action
1 parent b7366f0 commit fd07171

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/test-infrastructure.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,17 @@ on:
2222
jobs:
2323
test_infra:
2424
name: Run .NET SDK Tests
25-
runs-on: ubuntu-latest
25+
runs-on: macos-latest
2626
steps:
2727
- uses: actions/checkout@v1
2828
- uses: actions/setup-dotnet@v1
2929
with:
3030
dotnet-version: '6.0.x'
3131
- run: |
32+
dotnet workload install ios
3233
dotnet restore
33-
dotnet build -c Release
34-
dotnet test -c Release -v n
34+
dotnet build -c Release -f net6.0
35+
dotnet test -c Release -f net6.0 -v n
3536
working-directory: ./dotnet/
3637
env:
3738
TEST_SERVER_ENDPOINT: ${{ github.event.inputs.serverEndpoint }}

0 commit comments

Comments
 (0)