test runner - fix v6
This commit is contained in:
parent
91e11cdd7c
commit
47cbbc92cf
1 changed files with 8 additions and 7 deletions
|
|
@ -39,16 +39,17 @@ jobs:
|
||||||
git clone https://vicsergeev.ru/forgejo/Vic/DummyApp.git .
|
git clone https://vicsergeev.ru/forgejo/Vic/DummyApp.git .
|
||||||
git checkout ${{ github.sha }}
|
git checkout ${{ github.sha }}
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Install Python
|
||||||
uses: actions/setup-python@v4
|
run: |
|
||||||
with:
|
apt-get update
|
||||||
python-version: '3.9'
|
apt-get install -y python3 python3-pip python3-venv
|
||||||
|
python3 --version
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python3 -m pip install --upgrade pip
|
||||||
pip install -r requirements.txt
|
pip3 install -r requirements.txt
|
||||||
pip install pytest flake8
|
pip3 install pytest flake8
|
||||||
|
|
||||||
- name: Lint with flake8
|
- name: Lint with flake8
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue