Files
whisperbox-transcribe/.github/workflows/ci.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 14: cannot unmarshal !!str `pip ins...` into model.Step line 15: cannot unmarshal !!str `black -...` into model.Step line 16: cannot unmarshal !!str `isort -...` into model.Step line 17: cannot unmarshal !!str `flake8 app` into model.Step line 18: cannot unmarshal !!str `mypy app` into model.Step
2023-01-07 11:35:31 +01:00

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