Skip to content

4940 add visibility argument #39

4940 add visibility argument

4940 add visibility argument #39

Workflow file for this run

name: Python CI
on:
workflow_dispatch:
push:
branches: [develop]
pull_request:
branches: [develop]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r dev_requirements.txt --no-cache-dir
- name: Create dummy poly directory for tests
run: mkdir -p polyapi/poly
- name: Run unit tests
run: python -m unittest discover -s tests -t . -v