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 b7366f0 commit fd07171Copy full SHA for fd07171
.github/workflows/test-infrastructure.yml
@@ -22,16 +22,17 @@ on:
22
jobs:
23
test_infra:
24
name: Run .NET SDK Tests
25
- runs-on: ubuntu-latest
+ runs-on: macos-latest
26
steps:
27
- uses: actions/checkout@v1
28
- uses: actions/setup-dotnet@v1
29
with:
30
dotnet-version: '6.0.x'
31
- run: |
32
+ dotnet workload install ios
33
dotnet restore
- dotnet build -c Release
34
- dotnet test -c Release -v n
+ dotnet build -c Release -f net6.0
35
+ dotnet test -c Release -f net6.0 -v n
36
working-directory: ./dotnet/
37
env:
38
TEST_SERVER_ENDPOINT: ${{ github.event.inputs.serverEndpoint }}
0 commit comments