mirror of
https://github.com/bellingcat/whisperbox-transcribe.git
synced 2026-06-07 19:18:35 +03:00
30 lines
617 B
YAML
30 lines
617 B
YAML
name: CI
|
|
on: push
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
name: Lint
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.11'
|
|
cache: 'pip'
|
|
- pip install -e .[dev]
|
|
- black --check app
|
|
- isort --check app
|
|
- flake8 app
|
|
- mypy app
|
|
# test:
|
|
# runs-on: ubuntu-latest
|
|
# name: Test
|
|
# steps:
|
|
# - uses: actions/checkout@v3
|
|
# - uses: actions/setup-python@v4
|
|
# with:
|
|
# python-version: '3.11'
|
|
# cache: 'pip'
|
|
# - pip install -e .[test]
|
|
# - pytest
|