Skip to content

Commit

Permalink
change order
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-shibanov committed Mar 17, 2021
1 parent bb21859 commit 7242b9b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/workflow.yml
Expand Up @@ -103,6 +103,10 @@ jobs:
- name: Clear toolcache
shell: pwsh
run: __tests__/clear-toolcache.ps1 ${{ runner.os }}
- name: Setup dotnet 5.x
uses: ./
with:
dotnet-version: 5.x
- name: Setup dotnet 3.1.x
uses: ./
with:
Expand All @@ -111,13 +115,9 @@ jobs:
uses: ./
with:
dotnet-version: 2.2.x
- name: Setup dotnet 5.x
uses: ./
with:
dotnet-version: 5.x
- name: Verify dotnet
shell: pwsh
run: __tests__/verify-dotnet.ps1 3.1 2.2 5
run: __tests__/verify-dotnet.ps1 5 3.1 2.2

test-setup-with-wildcard:
runs-on: ${{ matrix.operating-system }}
Expand All @@ -131,6 +131,10 @@ jobs:
- name: Clear toolcache
shell: pwsh
run: __tests__/clear-toolcache.ps1 ${{ runner.os }}
- name: Setup dotnet 5.*
uses: ./
with:
dotnet-version: 5.*
- name: Setup dotnet 3.1.*
uses: ./
with:
Expand All @@ -139,13 +143,9 @@ jobs:
uses: ./
with:
dotnet-version: 2.2.*
- name: Setup dotnet 5.*
uses: ./
with:
dotnet-version: 5.*
- name: Verify dotnet
shell: pwsh
run: __tests__/verify-dotnet.ps1 3.1 2.2 5
run: __tests__/verify-dotnet.ps1 5 3.1 2.2

test-proxy:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 7242b9b

Please sign in to comment.