Skip to content

fix: install ImageMagick libs missing on ubuntu-24.04 runner #250

fix: install ImageMagick libs missing on ubuntu-24.04 runner

fix: install ImageMagick libs missing on ubuntu-24.04 runner #250

Workflow file for this run

name: Build and Test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
10.0.x
8.0.x
- name: Install ImageMagick
run: sudo apt-get install -y imagemagick libmagickcore-dev libmagickwand-dev
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore -p:TreatWarningsAsErrors=true --configuration Release
- name: Test
run: dotnet test --configuration Release
working-directory: ./