Skip to content

Add Basic Engine Specific Instructions into Connectors (#134) #216

Add Basic Engine Specific Instructions into Connectors (#134)

Add Basic Engine Specific Instructions into Connectors (#134) #216

Workflow file for this run

name: CI Checks
on:
push:
branches:
- main
pull_request:
branches:
- "*" # Run on all branches
env:
MIN_PYTHON_VERSION: 3.11
jobs:
job-pre-commit-check:
name: Pre-Commit Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ env.MIN_PYTHON_VERSION }}
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
- name: Install the project
run: uv sync --only-dev
- name: Run pre-commit
run: uv run pre-commit run --all-files