Update the github action, skip running test in release mode. #11
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
name: Test | |
on: | |
push: | |
branches: | |
- master | |
- legacy/* | |
paths: | |
- 'src/**' | |
- 'test/**' | |
- '.github/workflows/**' | |
env: | |
SOLUTION: DependencyInjection.StaticAccessor.sln | |
jobs: | |
windows: | |
name: Windows | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/[email protected] | |
with: | |
dotnet-version: | | |
3.1.x | |
- name: Restore NuGets | |
run: dotnet restore ${{ env.SOLUTION }} | |
- name: Build Solution in RELEASE | |
run: dotnet build --configuration Release --no-restore ${{ env.SOLUTION }} | |
- name: Test in RELEASE | |
run: dotnet test --configuration Release --no-build ${{ env.SOLUTION }} | |
linux: | |
name: Linux | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/[email protected] | |
with: | |
dotnet-version: | | |
3.1.x | |
- name: Restore NuGets | |
run: dotnet restore ${{ env.SOLUTION }} | |
- name: Build Solution in RELEASE | |
run: dotnet build --configuration Release --no-restore ${{ env.SOLUTION }} | |
- name: Test in RELEASE with netcoreapp3.1 | |
run: dotnet test --configuration Release --no-build --framework netcoreapp3.1 ${{ env.SOLUTION }} |