Skip to content

Commit

Permalink
Merge pull request #66 from dotnet-campus/t/lindexi/CI
Browse files Browse the repository at this point in the history
尝试修复构建
  • Loading branch information
lindexi authored May 30, 2023
2 parents bde70cf + c5a6324 commit 7a2d4a0
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
21 changes: 21 additions & 0 deletions .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ jobs:

steps:
- uses: actions/checkout@v1
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
3.1.x
5.0.x
6.0.100
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Test
Expand All @@ -20,6 +27,13 @@ jobs:

steps:
- uses: actions/checkout@v1
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
3.1.x
5.0.x
6.0.100
- name: Test
run: dotnet test "tests/dotnetCampus.Configurations.Tests" --configuration Release

Expand All @@ -29,5 +43,12 @@ jobs:

steps:
- uses: actions/checkout@v1
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
3.1.x
5.0.x
6.0.100
- name: Test
run: dotnet test "tests/dotnetCampus.Configurations.Tests" --configuration Release
10 changes: 9 additions & 1 deletion .github/workflows/nuget publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,15 @@ jobs:

steps:
- uses: actions/checkout@v1


- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
3.1.x
5.0.x
6.0.100
- name: Install dotnet tool
run: dotnet tool install -g dotnetCampus.TagToVersion

Expand Down

0 comments on commit 7a2d4a0

Please sign in to comment.