Skip to content

Bump Microsoft.EntityFrameworkCore.Sqlite from 9.0.13 to 9.0.17 #9

Bump Microsoft.EntityFrameworkCore.Sqlite from 9.0.13 to 9.0.17

Bump Microsoft.EntityFrameworkCore.Sqlite from 9.0.13 to 9.0.17 #9

Workflow file for this run

name: Build & Test
permissions:
contents: read
on:
push:
branches-ignore:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup dotnet
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.0.x
9.0.x
10.0.x
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: latest
- name: Start MongoDB
uses: supercharge/mongodb-github-action@1.12.1
with:
mongodb-version: 8.0
mongodb-port: 27017
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --no-restore -c Release
- name: Test
run: dotnet test --no-build -v normal -c Release /p:CollectCoverage=true /p:Threshold=100 /p:ThresholdType=branch