Fix to dataset delete syntax (#37) #52
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: Lintcheck Python | |
on: | |
push: | |
branches: [main] | |
paths: ['**.py'] | |
pull_request: | |
paths: ['**.py'] | |
jobs: | |
check_python: | |
name: Check Python linting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- uses: actions/checkout@v4 | |
- run: pip install -q uv && uv pip install --system ruff isort | |
- run: ruff format --check --diff . | |
- run: ruff check | |
- run: isort -c --diff nle/ |