Skip to content

fix: Fir 35673 python sdk engine update fix renaming (#399) #341

fix: Fir 35673 python sdk engine update fix renaming (#399)

fix: Fir 35673 python sdk engine update fix renaming (#399) #341

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.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ".[dev]"
- name: Run pre-commit checks
uses: pre-commit/[email protected]