Skip to content

Commit

Permalink
ci: including python and its dependencies setup
Browse files Browse the repository at this point in the history
  • Loading branch information
ThiagoPanini committed Sep 12, 2023
1 parent 75bfd40 commit ae1ec0b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,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 ae1ec0b

Please sign in to comment.