Skip to content

docs: record holistic-review follow-ups and non-finite guard in shape… #77

docs: record holistic-review follow-ups and non-finite guard in shape…

docs: record holistic-review follow-ups and non-finite guard in shape… #77

Workflow file for this run

name: CI

Check failure on line 1 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

(Line: 21, Col: 14): Unexpected value ''
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
with:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
- name: Restore
run: dotnet restore FlexRender.slnx
- name: Build
run: dotnet build FlexRender.slnx --no-restore --configuration Release
- name: Test
run: dotnet test FlexRender.slnx --no-build --configuration Release --logger "trx;LogFileName=results.trx"
- name: Upload test results
uses: actions/upload-artifact@v4
if: always()
with:
name: test-results-${{ matrix.os }}
path: '**/results.trx'