Skip to content

⬆️ Bump distlib from 0.3.6 to 0.3.7 #996

⬆️ Bump distlib from 0.3.6 to 0.3.7

⬆️ Bump distlib from 0.3.6 to 0.3.7 #996

Workflow file for this run

name: Unit Tests
on: [push]
jobs:
test-unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/[email protected]
with:
python-version: "3.8"
- name: Install poetry
run: make poetry-download
- name: Install dependencies
run: |
poetry config virtualenvs.in-project true
poetry install
- 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 }}