Fix mypy errors #1548
Workflow file for this run
This file contains hidden or 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: nox | |
| on: [push, pull_request] | |
| jobs: | |
| nox: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./python | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: wntrblm/nox@2024.04.15 | |
| with: | |
| python-versions: "3.9" | |
| - run: nox -s lint format type_hints smoke_tests unit_tests |