Skip to content

Expose more math functions in math.h #2054

Expose more math functions in math.h

Expose more math functions in math.h #2054

Workflow file for this run

name: Code Quality
on:
push:
branches: [ main, ci-fix ]
pull_request:
branches: [ main, ci-fix ]
jobs:
linting:
if: "!contains(github.event.pull_request.labels.*.name, 'no-ci')"
name: pre-commit
runs-on: ubuntu-latest
steps:
- name: Check repository
uses: actions/checkout@v6
- name: Setup Python 3.10
uses: actions/setup-python@v6
with:
python-version: '3.10'
cache: 'pip'
- name: Install linting tools
run: pip install .[linting]
- name: Run linting tools
id: lint
run: pre-commit run --show-diff-on-failure --color=always --all-files