Skip to content

docs(samples): add visual walkthroughs and a sidebar-driven website #135

docs(samples): add visual walkthroughs and a sidebar-driven website

docs(samples): add visual walkthroughs and a sidebar-driven website #135

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches: [main]
concurrency:
group: tests-${{ github.ref }}
cancel-in-progress: true
jobs:
dotnet-tests:
name: ${{ matrix.name }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- name: Generators
path: Aspid.FastTools.Generators
- name: Analyzers
path: Aspid.FastTools.Analyzers
steps:
- uses: actions/checkout@v4
# The test projects target net6.0; the SDK pinned in global.json builds them,
# the 6.0 runtime (installed via the 6.0.x SDK) runs them.
- uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
dotnet-version: 6.0.x
- name: Run ${{ matrix.name }} tests
run: dotnet test "${{ matrix.path }}" --nologo