Skip to content

all matches completed exception has been added (#95) #77

all matches completed exception has been added (#95)

all matches completed exception has been added (#95) #77

Workflow file for this run

name: quality_check
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize]
jobs:
quality_checks:
runs-on: ubuntu-latest
strategy:
matrix:
check_type: ['imports_check', 'pylint_check', 'pyright_check', 'unittest_check']
steps:
-
name: Checkout code
uses: actions/checkout@v4
-
name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
-
name: Setting up the environment
run: bash .github/scripts/setup_environment.sh ${{ matrix.check_type }}
-
name: Running the quality checks
run: bash .github/scripts/quality_checks.sh ${{ matrix.check_type }}