-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #816 from nozaq/fix-ci-nuget
Re-enable NuGet tests for .NET LTS versions
- Loading branch information
Showing
1 changed file
with
20 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -290,27 +290,26 @@ jobs: | |
- name: Run tests | ||
run: script/test npm | ||
|
||
# TODO: fix this and re-enable the tests. | ||
# nuget: | ||
# runs-on: ubuntu-latest | ||
# needs: core | ||
# strategy: | ||
# matrix: | ||
# dotnet: [ '3.1.x', '5.x' ] | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# - name: Setup dotnet | ||
# uses: actions/[email protected] | ||
# with: | ||
# dotnet-version: ${{ matrix.dotnet }} | ||
# - name: Set up Ruby | ||
# uses: ruby/setup-ruby@32110d4e311bd8996b2a82bf2a43b714ccc91777 | ||
# with: | ||
# bundler-cache: true | ||
# - name: Set up fixtures | ||
# run: script/source-setup/nuget | ||
# - name: Run tests | ||
# run: script/test nuget | ||
nuget: | ||
runs-on: ubuntu-latest | ||
needs: core | ||
strategy: | ||
matrix: | ||
dotnet: [ '8.x', '10.x' ] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup dotnet | ||
uses: actions/[email protected] | ||
with: | ||
dotnet-version: ${{ matrix.dotnet }} | ||
- name: Set up Ruby | ||
uses: ruby/setup-ruby@32110d4e311bd8996b2a82bf2a43b714ccc91777 | ||
with: | ||
bundler-cache: true | ||
- name: Set up fixtures | ||
run: script/source-setup/nuget | ||
- name: Run tests | ||
run: script/test nuget | ||
|
||
pip: | ||
runs-on: ubuntu-latest | ||
|