Skip to content

Bump Magick.NET-Q8-AnyCPU in /src/PdfLibCore.MagickNet (#21) #11

Bump Magick.NET-Q8-AnyCPU in /src/PdfLibCore.MagickNet (#21)

Bump Magick.NET-Q8-AnyCPU in /src/PdfLibCore.MagickNet (#21) #11

name: build
on:
push:
branches: [ master ]
paths:
- '**.csproj'
- '**.cs'
env:
DOTNET_VERSION: '6.0' # set this to the dot net version to use
jobs:
build:
name: build-${{matrix.os}}
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install dependencies
run: dotnet restore
- name: Build
run: |
dotnet build --configuration Release --no-restore
- name: Test
run: |
dotnet test --no-restore --verbosity normal