integration tests

This commit is contained in:
Trevi Awater
2026-03-30 21:31:01 +02:00
parent 3473744e71
commit d4949c7503
9 changed files with 564 additions and 0 deletions

34
.github/workflows/integration-tests.yml vendored Normal file
View File

@@ -0,0 +1,34 @@
name: Integration Tests
on:
push:
branches: ["main"]
paths:
- "Xamarin.Neo4j/**"
- ".github/workflows/integration-tests.yml"
pull_request:
branches: ["main"]
paths:
- "Xamarin.Neo4j/**"
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: "10.0.x"
- name: Unit Tests
working-directory: Xamarin.Neo4j/Xamarin.Neo4j/Xamarin.Neo4j.Tests
run: dotnet test --verbosity normal
- name: Integration Tests
working-directory: Xamarin.Neo4j/Xamarin.Neo4j/Xamarin.Neo4j.IntegrationTests
run: dotnet test --verbosity normal