Skip to content

Update changelog

Update changelog #53

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
configuration: [Debug, Release]
os: [ubuntu-latest, windows-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4.1.5
- name: Setup .NET 8
uses: actions/setup-dotnet@v4.0.0
with:
dotnet-version: 8.x
- name: Build via Bash
if: runner.os != 'Windows'
run: ./build.sh
env:
CI: true
CONFIGURATION: ${{ matrix.configuration }}
- name: Build via Windows
if: runner.os == 'Windows'
run: ./build.cmd
env:
CI: true
CONFIGURATION: ${{ matrix.configuration }}