Skip to content

CI - FSOCO tools installation #1081

CI - FSOCO tools installation

CI - FSOCO tools installation #1081

name: CI - FSOCO tools installation
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
install:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-20.04, ubuntu-22.04 ]
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: '3.8'
- name: Install PIP dependencies
working-directory: ./tools
run: |
pip install --upgrade pip wheel
pip install setuptools==60.8.2
pip install --editable .
- name: Install Supervisely SDK
working-directory: ./tools
run: pip install --editable .[sly]
- name: Test execution (user)
run: fsoco --help
- name: Install development dependencies
working-directory: ./tools
run: |
pip install -r requirements.txt
pre-commit install
- name: Test execution (developer)
run: fsoco --help