fix: add user to render/video groups for AMD GPU container access #6
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] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| ruff: | |
| name: Lint Python with Ruff | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install Ruff | |
| run: pip install ruff | |
| - name: Run Ruff on dream-server Python files | |
| run: | | |
| ruff check dream-server/ \ | |
| --select E,F,W \ | |
| --ignore E501,E701,E731,E741,E402 |