CoolFace
Apppublic

fred-dev/comfy_ui_ali

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes
ruff.yml24 linesDownload Raw Back to workflows
1name: Python Linting2 3on: [push, pull_request]4 5jobs:6  ruff:7    name: Run Ruff8    runs-on: ubuntu-latest9 10    steps:11    - name: Checkout repository12      uses: actions/checkout@v413 14    - name: Set up Python15      uses: actions/setup-python@v216      with:17        python-version: 3.x18 19    - name: Install Ruff20      run: pip install ruff21 22    - name: Run Ruff23      run: ruff check .24