Skip to content

Commit

Permalink
attempt to fix github action.
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkPflug committed Jan 7, 2025
1 parent 834e824 commit 6d3e571
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.0.302
dotnet-version: 9.0.100
- name: Restore dependencies
run: dotnet restore source
- name: Build
run: dotnet build source --no-restore
- name: Test
run: dotnet test source -f net6.0 --no-build --verbosity normal
run: dotnet test source -f net8.0 --no-build --verbosity normal
#- name: Coverage
# run: dotnet --% test source/Sylvan.Data.Csv.Tests/ -c Release -f net6.0 /p:CollectCoverage=true /p:CoverletOutputFormat=lcov /p:Include=\"[Sylvan.Data.Csv]*\"
#- name: Publish coverage
Expand Down

0 comments on commit 6d3e571

Please sign in to comment.