feat: kurtosis real chain e2e and fixes in eth #25
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: Python lint | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - ".github/scripts/generate-e2e-matrix.py" | |
| pull_request: | |
| paths: | |
| - ".github/scripts/generate-e2e-matrix.py" | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| python-lint: | |
| name: Python lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Python lint | |
| run: python3 -m py_compile .github/scripts/generate-e2e-matrix.py |