diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 428a9a3..fbf2abb 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -26,10 +26,16 @@ jobs: - name: Check out Git repository uses: actions/checkout@v4 - # Install your linters here + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: 3.11 + + - name: Install Python dependencies + run: pip install black flake8 - name: Run linters uses: wearerequired/lint-action@v2 with: - # Enable your linters here black: true + flake8: false