Skip to content

Commit

Permalink
Adding CI step to install .NET 5
Browse files Browse the repository at this point in the history
  • Loading branch information
EliIser committed May 10, 2024
1 parent 12c5a6d commit 97d40c3
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Add .Net 3.5 Framework
uses: actions/setup-dotnet@v4
with:
dotnet-version: '5.x'
- name: Run Unit Tests
# We don't have a good cross-platform way of splitting long lines
run: |
Expand All @@ -34,6 +38,10 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Add .Net 3.5 Framework
uses: actions/setup-dotnet@v4
with:
dotnet-version: '5.x'
- name: Test Legacy User
env:
DROPBOX_INTEGRATION_appKey: ${{ secrets.LEGACY_APP_KEY }}
Expand Down Expand Up @@ -66,6 +74,10 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Add .Net 3.5 Framework
uses: actions/setup-dotnet@v4
with:
dotnet-version: '5.x'
- name: Run Linter
run: |
# Install latest dotnet-format
Expand Down

0 comments on commit 97d40c3

Please sign in to comment.