Skip to content

fix: remove load-testing in CI temporarily till resolved #17

fix: remove load-testing in CI temporarily till resolved

fix: remove load-testing in CI temporarily till resolved #17

Workflow file for this run

name: Pre-commit
on:
push:
branches:
- main
pull_request:
jobs:
pre-commit:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files --verbose