Skip to content

Release v3.0.0

Release v3.0.0 #395

Workflow file for this run

name: CI
on: [ push, pull_request ]
jobs:
CI:
runs-on: ${{ matrix.os }}
container: ${{ matrix.container }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-22.04
container: mcr.microsoft.com/dotnet/sdk:8.0-bookworm-slim
script: ./build.sh
- os: ubuntu-22.04
container: rockylinux:8
script: ./build.sh
- os: ubuntu-22.04
container: mcr.microsoft.com/dotnet/sdk:8.0-alpine3.18
script: ./build.sh
- os: macos-13
script: ./build.sh
- os: windows-2022
script: .\build.ps1
steps:
- name: Dependencies (Debian 12)
if: contains(matrix.container, 'bookworm')
run: |
apt-get update
apt-get install -y fontconfig-config
- name: Dependencies (Rocky Linux 8)
if: contains(matrix.container, 'rockylinux')
run: dnf install -y dotnet-sdk-8.0 google-noto-sans-fonts which
- name: Dependencies (Alpine 3.18)
if: contains(matrix.container, 'alpine')
run: apk add bash font-noto --update-cache
- name: Setup dotnet (macOS 13, Windows 2022)
if: runner.os != 'Linux'
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
- name: Checkout
uses: actions/checkout@v4
- name: Test
run: ${{ matrix.script }}