From a40ad10a8ac9a28531bf052dd0c0b851747af5e6 Mon Sep 17 00:00:00 2001 From: Tina Kuzmenkova <45195445+vkuzmenkova@users.noreply.github.com> Date: Mon, 29 Apr 2024 09:58:56 +0200 Subject: [PATCH] Update python-app.yml --- .github/workflows/python-app.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 941a762..1f9d5dd 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -14,13 +14,17 @@ permissions: jobs: linters: - runs-on: ubuntu-latest - steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v3 - - run: | + with: + python-version: "3.10" + - name: Install dependencies + run: | python -m pip install --upgrade pip pip install flake8 + - name: Analysing the code with flake8 + run: | flake8 --config flake8 +