Bump SixLabors.ImageSharp from 1.0.1 to 2.1.8 in /src/DiffSharp.Data #77
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 and test (Release) | |
on: | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
build_linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.x | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Install tool dependencies | |
run: dotnet tool restore | |
- name: Build (Debug, for doc scripts) | |
run: dotnet build --configuration Debug --no-restore --verbosity normal | |
- name: Build (Release) | |
run: dotnet build --configuration Release --no-restore --verbosity normal | |
- name: Test | |
run: dotnet test --configuration Release --no-restore --verbosity normal | |
- name: Run fsdocs | |
run: dotnet fsdocs build --eval --strict --properties Configuration=Release | |
build_windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.x | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Install tool dependencies | |
run: dotnet tool restore | |
- name: Build (Release) | |
run: dotnet build --configuration Release --no-restore --verbosity normal | |
- name: Test | |
run: dotnet test --configuration Release --no-restore --verbosity normal | |
build_macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.x | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Install tool dependencies | |
run: dotnet tool restore | |
- name: Build (Release) | |
run: dotnet build --configuration Release --no-restore --verbosity normal | |
- name: Test | |
run: dotnet test --configuration Release --no-restore --verbosity normal |