Skip to content

add workflows

add workflows #1

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: flake8
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
flake8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install flake8
run: |
python -m pip install -U flake8
- name: Lint with flake8
run: |
flake8 --config=.flake8 pyannote_onnx