From 10ac978818f373bdfbfd1581823a8c7f8397cf6d Mon Sep 17 00:00:00 2001 From: farhan Date: Wed, 13 Sep 2023 18:31:47 +0500 Subject: [PATCH] chore: test --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca3fff68f..02f1ea7e6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,10 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install Dependencies - run: pip install -r requirements/ci.txt + run: | + python -m pip install --upgrade pip + pip install flake8 + pip install -r requirements/ci.txt - name: Run Tests run: tox -e ${{ matrix.toxenv }}