Skip to content

[MAPPS-4078] Fixed upgrade readiness python3 issues #251

[MAPPS-4078] Fixed upgrade readiness python3 issues

[MAPPS-4078] Fixed upgrade readiness python3 issues #251

Workflow file for this run

name: Unit tests
on: [pull_request]
permissions:
contents: read
# We don't want to cancel any redundant runs on main so we use run_id when head_ref is
# not available
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
UnitTest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# install python stuff
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.8'
cache: 'pip'
- name: Install Python dependencies
run: |
make dev-install-dependencies-lib
make dev-install-dependencies-for-development
- name: Run unit tests
run: make test