Skip to content

Fixing Failing Tests (numpy 2.0) #189

Fixing Failing Tests (numpy 2.0)

Fixing Failing Tests (numpy 2.0) #189

Workflow file for this run

name: Lint
on:
# Trigger the workflow on push or pull request,
# but only for the main and develop branches
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
architecture: "x64"
- name: pre-commit-run
run: |
pip install pre-commit
pre-commit run --all-files