Skip to content

⬆️ Bump identify from 2.5.35 to 2.6.0 #1496

⬆️ Bump identify from 2.5.35 to 2.6.0

⬆️ Bump identify from 2.5.35 to 2.6.0 #1496

Workflow file for this run

name: Unit Tests
on: [push]
jobs:
test-unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v5.1.0
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 }}