Skip to content

chore(deps): bump Microsoft.Extensions.Caching.Abstractions from 6.0.0 to 8.0.0-preview.7.23375.6 in /src/Finbuckle.MultiTenant.EntityFrameworkCore #73

chore(deps): bump Microsoft.Extensions.Caching.Abstractions from 6.0.0 to 8.0.0-preview.7.23375.6 in /src/Finbuckle.MultiTenant.EntityFrameworkCore

chore(deps): bump Microsoft.Extensions.Caching.Abstractions from 6.0.0 to 8.0.0-preview.7.23375.6 in /src/Finbuckle.MultiTenant.EntityFrameworkCore #73

Workflow file for this run

name: CI Workflow
on:
push:
branches: [main]
pull_request:
jobs:
build-and-test:
strategy:
matrix:
dotnet: ["6.0", "7.0", "8.0"]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: checkout repo
uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: "8.0.100-preview.7.23376.3"
- name: build
run: dotnet build
- name: test Finbuckle.MultiTenant
run: dotnet test --no-build -v q -f net${{ matrix.dotnet }}
working-directory: ./test/Finbuckle.MultiTenant.Test
- name: test Finbuckle.MultiTenant.AspNetCore
run: dotnet test --no-build -v q -f net${{ matrix.dotnet }}
working-directory: ./test/Finbuckle.MultiTenant.AspNetCore.Test
- name: test Finbuckle.MultiTenant.EntityFrameworkCore
run: dotnet test --no-build -v q -f net${{ matrix.dotnet }}
working-directory: ./test/Finbuckle.MultiTenant.EntityFrameworkCore.Test