Skip to content

Fix GitHub actions and unit tests #7

Fix GitHub actions and unit tests

Fix GitHub actions and unit tests #7

name: Integration Tests
on: [pull_request, workflow_dispatch]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['8.0.x']
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/[email protected]
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
working-directory: QueryKit.IntegrationTests
run: dotnet test --no-restore --verbosity minimal