Bump EntityFrameworkCore.Projectables from 4.0.0 to 6.0.1 #114
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: '10.0.x' | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '20' | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '21' | |
| - name: Restore | |
| run: dotnet restore EFQueryLens.slnx | |
| - name: Build | |
| run: dotnet build EFQueryLens.slnx --no-restore | |
| - name: Test | |
| run: dotnet test EFQueryLens.slnx --no-build | |
| - name: Build VS Code client | |
| working-directory: src/Plugins/ef-querylens-vscode | |
| run: | | |
| npm ci | |
| npm run compile | |
| - name: Build Rider plugin Kotlin sources | |
| working-directory: src/Plugins/ef-querylens-rider | |
| run: | | |
| chmod +x ./gradlew | |
| ./gradlew compileKotlin --no-daemon | |
| build-visual-studio-extension: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: '10.0.x' | |
| - name: Build Visual Studio extension | |
| run: dotnet build src/Plugins/ef-querylens-visualstudio/EFQueryLens.VisualStudio/EFQueryLens.VisualStudio.csproj -c Debug |