test runner - fix v6
Some checks failed
Build and Deploy Flask App / setup (push) Successful in 2s
Build and Deploy Flask App / test (push) Successful in 59s
Build and Deploy Flask App / build-and-push (push) Failing after 26s
Build and Deploy Flask App / deploy (push) Has been skipped

This commit is contained in:
Norvicdev 2026-08-04 21:27:37 +03:00
parent 91e11cdd7c
commit 47cbbc92cf

View file

@ -39,16 +39,17 @@ jobs:
git clone https://vicsergeev.ru/forgejo/Vic/DummyApp.git .
git checkout ${{ github.sha }}
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install Python
run: |
apt-get update
apt-get install -y python3 python3-pip python3-venv
python3 --version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest flake8
python3 -m pip install --upgrade pip
pip3 install -r requirements.txt
pip3 install pytest flake8
- name: Lint with flake8
run: |