Skip to content

changelog for v0.16.0-beta006 #113

changelog for v0.16.0-beta006

changelog for v0.16.0-beta006 #113

Workflow file for this run

name: Build master
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
dotnet: [8.0.100]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Install local tools
run: dotnet tool restore
- name: NuGet restore
run: dotnet restore Fornax.sln
- name: Build
run: dotnet run
- name: Upload a Build Artifact
uses: actions/upload-artifact@v4
with:
name: fornax-artifacts-${{ matrix.os }}
path: out