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 line 28: cannot unmarshal !!str `pip ins...` into model.Step line 29: cannot unmarshal !!str `pytest` into model.Step
Felix Spöttel b3a38846ba feat: add job & artifact tables
* remove `accounts` table in favor of a simple API key auth
2023-01-05 12:03:41 +01:00

30 lines
594 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 .[dev]
- pytest