Remove docker and use the github runner directly for neureka(-v2) tests #34
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: Linting | |
| on: push | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: psf/black@stable | |
| with: | |
| src: "test" | |
| # Needed by pyright | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.10' | |
| cache: 'pip' | |
| - run: | | |
| pip install -r test/requirements.txt | |
| - uses: jakebailey/pyright-action@v2 | |
| with: | |
| working-directory: test | |
| - uses: isort/isort-action@v1 | |
| with: | |
| sort-paths: "test" | |
| - name: clang-format Check | |
| uses: jidicula/clang-format-action@v4.14.0 | |
| with: | |
| clang-format-version: 19 |