Skip to content

Fix simulations crashing on MacOS #1

Fix simulations crashing on MacOS

Fix simulations crashing on MacOS #1

Workflow file for this run

name: lints
on:
push:
branches: [main, test-me-*]
tags:
pull_request:
workflow_dispatch:
jobs:
lints:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install Dependencies
run: |
python -m pip install pre-commit
- name: Run pre-commit
run: pre-commit run --show-diff-on-failure --color=always --all-files