Bump Magick.NET-Q16-AnyCPU from 7.15.4 to 13.3.0 in /ImageServer.Core #80
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: build | |
on: [push] | |
jobs: | |
testBuild: | |
name: Test, build and analyze | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 3.1.x | |
- name: Run unit tests | |
run: dotnet test --configuration Release ImageServer.Tests/ | |
- name: Run integration tests | |
run: dotnet test --configuration Release ImageServer.Integration.Tests/ | |
- name: Install dotnet-sonarscanner | |
run: dotnet tool install --tool-path ./bin dotnet-sonarscanner | |
- name: SonarCloud scan begin | |
run: ./bin/dotnet-sonarscanner begin /d:sonar.login="${{ secrets.SONAR_TOKEN }}" /k:"cemusta_ImageServer.Core" /o:"cemusta" /d:sonar.host.url="https://sonarcloud.io" | |
- name: Build with dotnet | |
run: dotnet build --configuration Release | |
- name: SonarCloud scan end | |
run: ./bin/dotnet-sonarscanner end /d:sonar.login="${{ secrets.SONAR_TOKEN }}" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |