Skip to content

YOLOv8 classification #338

YOLOv8 classification

YOLOv8 classification #338

Workflow file for this run

name: CI
on:
push:
branches:
- 'master'
pull_request:
types: [edited, ready_for_review, opened, synchronize, reopened]
defaults:
run:
shell: bash
jobs:
build_and_test:
if: |
github.event.pull_request.draft == false &&
!startsWith(github.event.pull_request.title, '[WIP]') &&
!startsWith(github.event.pull_request.title, '[Dependent]')
strategy:
fail-fast: false
matrix:
os: ['macos-12', 'ubuntu-22.04', 'windows-2022']
python-version: ['3.8', '3.9', '3.10', '3.11']
name: build and test (${{ matrix.os }}, Python ${{ matrix.python-version }})
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Installing python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Installing dependencies
run: |
pip install -e '.[default,tf,tfds]' pytest
- name: Unit testing
run: |
pytest -v
datum -h