Skip to content

⬆️ Bump actions/setup-python from 5.1.0 to 5.1.1 #1853

⬆️ Bump actions/setup-python from 5.1.0 to 5.1.1

⬆️ Bump actions/setup-python from 5.1.0 to 5.1.1 #1853

Workflow file for this run

name: Unit Tests
on: [push]
jobs:
test-unit:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Set up Python 3.10
uses: actions/[email protected]
with:
python-version: "3.10"
- name: Install poetry
run: make poetry-download
- name: Install dependencies
run: |
poetry config virtualenvs.in-project true
poetry install --all-extras
- name: Run tests
run: make test-unit
- name: Report Coverage
run: bash <(curl -Ls https://coverage.codacy.com/get.sh) report -l Python --force-language -r coverage.xml
env:
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}