Skip to content

test(FIR-47589): Fix async tests (#115) #81

test(FIR-47589): Fix async tests (#115)

test(FIR-47589): Fix async tests (#115) #81

Workflow file for this run

name: Code quality checks
on:
workflow_call:
inputs:
branch:
required: false
type: string
description: 'Branch to run on'
push:
branches: [ main, 0.x ]
jobs:
check-code:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
with:
ref: ${{ inputs.branch }}
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ".[dev]"
- name: Run pre-commit checks
run: pre-commit run --all-files