Skip to content

Merge branch 'cloudDev' #82

Merge branch 'cloudDev'

Merge branch 'cloudDev' #82

Workflow file for this run

name: .NET Build, Test
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET 8.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Build DexieNET normal and cloud
run: dotnet build DexieCloudNET/DexieCloudNET.csproj -c Release
- name: TestSG
run: dotnet test DexieNETTest/TableGeneratorTest/DexieNETTest.TableGeneratorTest.csproj -c Release
- name: TestDB
run: dotnet test DexieNETTest/Tests/DexieNETTest.Tests.csproj -c Release