Skip to content

Commit

Permalink
Update GitHub Actions to use dotnet 3.1 (#52)
Browse files Browse the repository at this point in the history
* Update GitHub Actions to use dotnet 3.1

This is in refrence to PR #35

* Update GitHub Actions to use dotnet 3.1

This is in refrence to PR #35
  • Loading branch information
DennisAMenace authored and dangershony committed Jan 16, 2020
1 parent bad099e commit f0092be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: '2.2.402'
dotnet-version: '3.1.101'

- name: Restore
run: dotnet restore ${{env.SOLUTION_PATH}}
Expand All @@ -35,4 +35,4 @@ jobs:
run: dotnet build --configuration ${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_PATH}}

- name: Unit Test
run: dotnet test -v=normal --no-build --filter FullyQualifiedName!~IntegrationTests --configuration ${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_PATH}}
run: dotnet test -v=normal --no-build --filter FullyQualifiedName!~IntegrationTests --configuration ${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_PATH}}
4 changes: 2 additions & 2 deletions .github/workflows/integration-test.yml
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: '2.2.402'
dotnet-version: '3.1.101'

- name: Restore
run: dotnet restore ${{env.SOLUTION_PATH}}
Expand All @@ -35,4 +35,4 @@ jobs:
run: dotnet build --configuration ${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_PATH}}

- name: Integration Test
run: dotnet test -v=normal --no-build --filter FullyQualifiedName~IntegrationTests --configuration ${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_PATH}}
run: dotnet test -v=normal --no-build --filter FullyQualifiedName~IntegrationTests --configuration ${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_PATH}}

0 comments on commit f0092be

Please sign in to comment.