From 07696e584509d94b5da062df9159ec348ece2ae0 Mon Sep 17 00:00:00 2001 From: Ahmed Hesham Date: Thu, 16 Oct 2025 09:33:44 +0300 Subject: [PATCH] add pyflake8 setup --- .github/workflows/main.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index d710bc5..be31d44 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -7,11 +7,16 @@ on: branches: ["main"] jobs: - test: + runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v5.0.0 - name: Run tests run: python3 test_main.py + + - name: setup pyflake8 + run: | + python -m pip install flake8 + \ No newline at end of file