Skip to content

Commit

Permalink
Upgrade CI environment
Browse files Browse the repository at this point in the history
  • Loading branch information
natemcmaster committed Jun 5, 2022
1 parent 5b9df62 commit 5250f0a
Showing 1 changed file with 6 additions and 14 deletions.
20 changes: 6 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,29 +36,21 @@ jobs:
package_version: ${{ steps.build_script.outputs.package_version }}

steps:
- uses: actions/checkout@v2
- name: Setup .NET Core 2.1
uses: actions/setup-dotnet@v1
- uses: actions/checkout@v3
- name: Setup .NET 6
uses: actions/setup-dotnet@v2
with:
dotnet-version: "2.1.x"
- name: Setup .NET Core 3.1
uses: actions/setup-dotnet@v1
with:
dotnet-version: "3.1.x"
- name: Setup .NET 5
uses: actions/setup-dotnet@v1
with:
dotnet-version: "5.0.x"
dotnet-version: "6.0.x"
- name: Run build script
id: build_script
run: ./build.ps1 -ci
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
if: ${{ matrix.os == 'windows-latest' }}
with:
name: packages
path: artifacts/
if-no-files-found: error
- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v2
with:
name: unittests-${{ matrix.os }}
fail_ci_if_error: true
Expand Down

0 comments on commit 5250f0a

Please sign in to comment.