gruggers 0.9.2

rust implementation of the grug language
Documentation
name: CI Build

on:
  pull_request:
  push:
    branches: [master]

jobs:
  build:
    runs-on: ${{ matrix.os }}

    strategy:
      matrix:
        os: [ubuntu-latest, windows-latest]

    steps:
      - uses: actions/checkout@v4

      # Configure
      - run: cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release

      # Build
      - run: cmake --build build

      # Run smoketest
      - run: build/smoketest

      # Run nbody benchmark
      - run: build/nbody --headless