Skip to content

feat: add --base-path CLI option for relative file resolution #15

feat: add --base-path CLI option for relative file resolution

feat: add --base-path CLI option for relative file resolution #15

Workflow file for this run

name: CI
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:
lfs: true
- 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'