Skip to content

Update to numba 0.60 #1323

Update to numba 0.60

Update to numba 0.60 #1323

Workflow file for this run

# SPDX-FileCopyrightText: 2022 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
name: pre-commit
on:
pull_request:
push:
branches: [main]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: run pre-commit
shell: bash -l {0}
run: |
pip install pre-commit || exit 1
pre-commit run --all-files || exit 1