Skip to content

v9.0.0 Upgrade to .Net 9 and EntityFrameworkCore 9 #88

v9.0.0 Upgrade to .Net 9 and EntityFrameworkCore 9

v9.0.0 Upgrade to .Net 9 and EntityFrameworkCore 9 #88

Workflow file for this run

name: .NET Core
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0.x'
- name: Build with dotnet
run: dotnet build src/MockQueryable/*.sln --configuration Release
- name: Test with dotnet
run: dotnet test src/MockQueryable/*.sln