Skip to content

Update to ef core 8 in order to support latest version of ef core (#32) #59

Update to ef core 8 in order to support latest version of ef core (#32)

Update to ef core 8 in order to support latest version of ef core (#32) #59

Workflow file for this run

name: .NET Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
if: "!contains(github.event.head_commit.message, '#skip_ci')"
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- name: Fetch
run: git fetch --unshallow
- name: Setup .NET Core
uses: actions/setup-dotnet@v2
with:
dotnet-version: 7.0.203
- name: Add WASM workload
run: dotnet workload install wasm-tools
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore SqliteWasmHelper.sln