Skip to content

Commit

Permalink
pip install wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
Azulinho committed Nov 23, 2021
1 parent 5017c0c commit 517e328
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,21 @@ jobs:
- name: setup python
uses: actions/setup-python@v1

- name: pip installs requirements.txt
run: pip install -r requirements.txt

- name: pip installs requirements-dev.txt
run: pip install -r requirements-dev.txt
- name: pip install
run: |
set -e
pip install wheel
pip install -r requirements.txt
pip installs requirements-dev.txt
- name: pylint
run: pylint app.pyt

- name: pytest
run: pytest tests/

- name: pip installs docker-compose
run: pip install docker-compose

- name: local docker-compose build
run: docker-compose build
run: |
set -e
pip install docker-compose
docker-compose build

0 comments on commit 517e328

Please sign in to comment.