mirror of
https://github.com/awatertrevi/xamarin-neo4j.git
synced 2026-09-22 09:05:29 +00:00
35 lines
778 B
YAML
35 lines
778 B
YAML
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
|