Bump Microsoft.Extensions.Caching.StackExchangeRedis from 10.0.1 to 10.0.2 #15
Workflow file for this run
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: | |
| - master | |
| workflow_dispatch: | |
| # branches: | |
| # - master | |
| # - feature/** | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| env: | |
| SOURCE_DIRECTORY: ${{ github.workspace }} | |
| SOLUTION_FILE: "OLT.CacheServices.slnx" | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'zulu' | |
| java-version: '17' | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
| - name: Setup .NET Core SDK | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: | | |
| 8.0.x | |
| 9.0.x | |
| 10.0.x | |
| - name: Get branch name | |
| id: branch-name | |
| uses: tj-actions/branch-names@v9 | |
| # https://www.seeleycoder.com/blog/sonarqube-with-github-actions-and-net-core-5-x/ | |
| # this process reads the .config -> dotnet-tools.json to restore packages | |
| - name: Sonarqube Begin | |
| run: | | |
| dotnet tool restore | |
| dotnet tool run dotnet-sonarscanner begin /k:"OuterlimitsTech_olt-dotnet-cache-service" /o:"outerlimitstech" /d:sonar.token=${{ secrets.SONAR_TOKEN }} /d:sonar.host.url="https://sonarcloud.io" /d:sonar.cs.vstest.reportsPaths=**/*.trx /d:sonar.cs.opencover.reportsPaths=**/coverage.opencover.xml /d:sonar.coverage.exclusions="**Test*.cs" /d:sonar.branch.name=${{ steps.branch-name.outputs.current_branch }} | |
| - name: Restore dependencies | |
| run: dotnet restore ${{ format('{0}/{1}', env.SOURCE_DIRECTORY, env.SOLUTION_FILE) }} | |
| - name: Build | |
| run: dotnet build ${{ format('{0}/{1}', env.SOURCE_DIRECTORY, env.SOLUTION_FILE) }} --configuration "Release" --no-restore | |
| - name: Test | |
| run: dotnet test ${{ format('{0}/{1}', env.SOURCE_DIRECTORY, env.SOLUTION_FILE) }} --no-build --verbosity normal --no-restore --configuration "Release" --collect:"XPlat Code Coverage" --logger "trx;LogFilePrefix=unittests" -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=opencover | |
| env: | |
| ASPNETCORE_ENVIRONMENT: Test | |
| DOTNET_ENVIRONMENT: Test | |
| - name: Sonarqube end | |
| run: dotnet tool run dotnet-sonarscanner end /d:sonar.token=${{ secrets.SONAR_TOKEN }} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |