Skip to content

5.23

5.23 #1

Workflow file for this run

name: sqlite
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
config: Release
disable_test_parallelization: true
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET 8
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Setup .NET 9
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Setup .NET 10
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.x
- name: Run Sqlite Tests
run: ./build.sh CISqlite --framework net9.0