Skip to content

Updated the deepstream hybrid example (#25) #20

Updated the deepstream hybrid example (#25)

Updated the deepstream hybrid example (#25) #20

Workflow file for this run

name: pre-commit
on:
pull_request:
branches: [main]
push:
branches: [main]
workflow_dispatch:
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: install pre-commit
run: |
pip install --upgrade pip
pip install pre-commit jupyter
pre-commit install
- name: run pre-commit hooks
run: |
pre-commit run --color=always --all-files