chore: Moved structures.py from tubular repository (#34328)

* chore: Moved structures.py from tubular repository
This commit is contained in:
Muhammad Farhan Khan
2024-03-12 18:46:34 +05:00
committed by GitHub
parent da244a99d3
commit 7808913916
13 changed files with 1566 additions and 1 deletions

View File

@@ -0,0 +1,33 @@
name: units-test-scripts-common
on:
pull_request:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8', '3.12' ]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r scripts/structures_pruning/requirements/testing.txt
- name: Run pytest
run: |
pytest scripts/structures_pruning