[Feat] Add support for index tricks in autograd numpy #116
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Checks | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
env: | |
PIP_DISABLE_PIP_VERSION_CHECK: '1' | |
PY_COLORS: '1' | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
env: | |
#- ruff | |
- package | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
python-version: '3.10' | |
- name: Install build tools | |
run: | | |
python -m pip install tox wheel | |
- name: Run ${{ matrix.env }} | |
run: python -m tox -e ${{ matrix.env }} |