github(lint): use requirements-dev.txt

This commit is contained in:
Aleix Conchillo Flaqué
2024-04-03 15:12:46 -07:00
parent 3528f5d735
commit e3ee3f9cc6

View File

@@ -29,11 +29,11 @@ jobs:
- name: Setup virtual environment
run: |
python -m venv .venv
- name: Install basic Python dependencies
- name: Install development Python dependencies
run: |
source .venv/bin/activate
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: autopep8
id: autopep8
run: |