Skip to content

Commit

Permalink
ci: included a python setup step before unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ThiagoPanini committed Sep 11, 2023
1 parent 8b07ff9 commit 0ef977b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci-feature.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,16 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Python Setup
uses: actions/setup-python@v3
with:
python-version: '3.10'

- name: Dependencies Setup
run: |
python -m pip install --upgrade pip
python -m pip install -r ./requirements/dev.txt
- name: Unit Test with pytest
run:
pytest -vv --color=yes --cov=./ --cov-report=xml
Expand Down

0 comments on commit 0ef977b

Please sign in to comment.