Going back to ref, in caused performance regressions #55
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: .NET Tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macOS-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout Lightning.NET | |
| uses: actions/checkout@v5 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: | | |
| 10.0.x | |
| 9.0.x | |
| 8.0.x | |
| - name: Install dependencies | |
| working-directory: ${{ runner.workspace }}/Lightning.NET | |
| run: dotnet restore | |
| - name: Build | |
| working-directory: ${{ runner.workspace }}/Lightning.NET | |
| run: dotnet build --no-restore | |
| - name: Test | |
| working-directory: ${{ runner.workspace }}/Lightning.NET | |
| run: dotnet test --no-build --no-restore --verbosity normal |