Skip to content

Remove the Filter action from DB editor #2518

Remove the Filter action from DB editor

Remove the Filter action from DB editor #2518

Workflow file for this run

# GitHub Action to run tests
name: Test suite
# Run workflow on every push that includes Python source files
on:
push:
paths:
- "**.py"
- ".github/workflows/test_runner.yml"
- "requirements.txt"
- "pyproject.toml"
- "execution_tests/**"
jobs:
call-unit-tests:
name: Unit tests
strategy:
fail-fast: true
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
os: [windows-latest, ubuntu-22.04]
uses: ./.github/workflows/unit_tests.yml
with:
host-os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}
secrets: inherit
call-execution-tests:
name: Execution tests
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
os: [windows-latest, ubuntu-22.04]
uses: ./.github/workflows/execution_tests.yml
with:
host-os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}
secrets: inherit