Skip to content

change: split integration test by platform #1253

change: split integration test by platform

change: split integration test by platform #1253

Workflow file for this run

name: Pre-commit checks
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files