Skip to content

Bump Microsoft.Extensions.Caching.StackExchangeRedis from 10.0.10 to 10.0.11 #451

Bump Microsoft.Extensions.Caching.StackExchangeRedis from 10.0.10 to 10.0.11

Bump Microsoft.Extensions.Caching.StackExchangeRedis from 10.0.10 to 10.0.11 #451

Workflow file for this run

name: Build
on:
pull_request:
branches:
- main
paths:
- '.config/**'
- '*.sln'
- '*.slnx'
- 'src/**'
- 'test/**'
- 'Directory.*.props'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions: read-all
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Set up .NET SDK
uses: actions/setup-dotnet@v6
with:
dotnet-version: |
8.0.x
10.0.x
cache: true
cache-dependency-path: '**/Directory.Packages.props'
- name: Build
run: |
dotnet --info
dotnet build -c Release
- name: Test
run: |
dotnet test --coverage --coverage-output-format cobertura --filter "FullyQualifiedName!~E2E" --ignore-exit-code 8
dotnet tool restore
dotnet tool run reportgenerator
[[ -f "./coverage/Summary.txt" ]] && cat "./coverage/Summary.txt"
- uses: codecov/codecov-action@v7
with:
flags: core
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}