Merge pull request #15 from Elembio/review_round_20260328 #82
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: "MultiQC lint" | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| prek: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: j178/prek-action@v1 | |
| code_checks: | |
| name: "code_checks.py" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.14.0" # 3.14.1 has upstream bug | |
| cache: "pip" | |
| - run: pip install rich | |
| - name: "Run manual code style checks" | |
| run: python ${GITHUB_WORKSPACE}/.github/workflows/code_checks.py |