Skip to content

[+] file structure refactoring, structural updates, yolov11 #1

[+] file structure refactoring, structural updates, yolov11

[+] file structure refactoring, structural updates, yolov11 #1

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test-and-build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
- name: Run tests
run: pytest -v
- name: Build distribution
run: |
pip install build
python -m build
- name: Upload distribution artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: pywui-dist
path: dist/*