Skip to content

Update EF version

Update EF version #48

Workflow file for this run

name: Build
env:
DOTNET_NOLOGO: 1
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
efcore: ['3.1.25', '5.0.15', '6.0.3', '7.0.0']
env:
EntityFrameworkCoreVersion: ${{matrix.efcore}}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore /p:TreatWarningsAsErrors=true
- name: Run Tests
run: dotnet test --configuration Release --no-build
nupkg:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
- name: Generate NuGet Packages
run: dotnet pack --configuration Release --output nupkg
- uses: actions/upload-artifact@v2
if: success() && github.ref == 'refs/heads/main'
with:
name: nupkg
path: nupkg/*
retention-days: 1