File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4040 with :
4141 python-version : ${{ matrix.python-version }}
4242 cache : ' pip'
43- cache-dependency-path : ' setup.py '
43+ cache-dependency-path : ' pyproject.toml '
4444
4545 - name : Use Node.js ${{ matrix.node-version }}
4646 uses : actions/setup-node@v6
Original file line number Diff line number Diff line change @@ -28,18 +28,18 @@ tests: testpy testjs ## run the tests
2828# Linting #
2929# ##########
3030lintpy : # # lint python with ruff and isort
31- python -m isort --check nbcelltests setup.py
32- python -m ruff check nbcelltests setup.py
33- python -m ruff format --check nbcelltests setup.py
31+ python -m isort --check nbcelltests
32+ python -m ruff check nbcelltests
33+ python -m ruff format --check nbcelltests
3434
3535lintjs : # # lint javascript with eslint
3636 cd js; jlpm lint
3737
3838lint : lintpy lintjs # # run linters
3939
4040fixpy : # # autoformat python with ruff and isort
41- python -m isort nbcelltests setup.py
42- python -m ruff format nbcelltests setup.py
41+ python -m isort nbcelltests
42+ python -m ruff format nbcelltests
4343
4444fixjs : # # autoformat javascript with eslint
4545 cd js; jlpm fix
Load diff This file was deleted.
You can’t perform that action at this time.
0 commit comments