test: remove multistatement query from system engine test (#102) #118
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will install Python dependencies, run pre-commit checks, and run tests with a single version of Python | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Unit tests | |
on: | |
workflow_call: | |
push: | |
branches: [ main, 0.x ] | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Set up .NET 6.0 | |
id: dotnet-setup | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.0 | |
- name: use .NET 6.0 | |
run: | | |
dotnet new globaljson --sdk-version '${{ steps.dotnet-setup.outputs.dotnet-version }}' | |
- name: Install dependencies | |
run: | | |
dotnet restore | |
- name: Run unit tests | |
run: | | |
dotnet test --filter "Category!=Integration" |