[Feature Request] Filter Find All References by kind (#160) #96
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: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - '*' | |
| # Don't run tests on tag pushes (handled by build workflow) | |
| workflow_dispatch: | |
| env: | |
| DOTNET_VERSION: '10.x' | |
| jobs: | |
| test: | |
| if: "!startsWith(github.ref, 'refs/tags/')" | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| include: | |
| - os: ubuntu-latest | |
| platform: Linux | |
| - os: macos-latest | |
| platform: macOS | |
| - os: windows-latest | |
| platform: Windows | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 20 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: ${{ env.DOTNET_VERSION }} | |
| # dotnet-quality: preview | |
| - name: Restore .NET tools | |
| run: dotnet tool restore | |
| - name: Run tests | |
| run: dotnet cake --target=test --configuration=release |