Format code and update ci #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pip | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
# platform: [macos-13, ubuntu-latest] | |
platform: [ubuntu-latest] | |
python-version: ["3.8", "3.10", "3.12"] | |
runs-on: ${{ matrix.platform }} | |
# runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies on Ubuntu | |
if: runner.os == 'Linux' | |
run: | | |
sudo apt-get update | |
sudo apt-get install libopencv-dev -y | |
- name: Install dependencies on macOS | |
if: runner.os == 'macOS' | |
run: | | |
brew update | |
brew install opencv | |
- name: Install dependencies on Windows | |
if: runner.os == 'Windows' | |
run: | | |
choco install opencv -y | |
- name: Add requirements | |
run: python -m pip install --upgrade wheel setuptools | |
- name: Install Python dependencies | |
run: | | |
pip install -r requirements.txt | |
sudo apt-get update && sudo apt-get install ffmpeg libsm6 libxext6 -y | |
- name: Build and install | |
run: pip install . | |
- name: Test | |
run: python -m pytest |