Skip to content

wip

wip #16

Workflow file for this run

name: Build
on:
push:
paths-ignore:
- 'README.md'
- 'docs/'
- 'ai/'
- 'AGENTS.md'
- '.claude/'
pull_request:
paths-ignore:
- 'README.md'
- 'docs/'
- 'ai/'
- 'AGENTS.md'
- '.claude/'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
include:
- os: ubuntu-latest
run-build: sh ./build.sh
- os: windows-latest
run-build: .\build.cmd
- os: macos-latest
run-build: bash ./build.sh
steps:
- uses: actions/checkout@v4
- name: Install Dotnet
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- name: Cache Paket
uses: actions/cache@v4
with:
path: |
~/.nuget/packages
paket-files
key: ${{ runner.os }}-paket-${{ hashFiles('paket.lock') }}
restore-keys: |
${{ runner.os }}-paket-
- name: Build
run: ${{ matrix.run-build }}