docs(samples): add visual walkthroughs and a sidebar-driven website #135
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |