Skip to content

Workflow file for this run

version: 2.1
orbs:
codecov: codecov/codecov@3.2.2
jobs:
test-api:

Check failure on line 7 in .github/workflows/config.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/config.yml

Invalid workflow file

You have an error in your yaml syntax on line 7
docker:
- image: cimg/python:3.10.2
steps:
- checkout
- run:
name: Install requirements
command: pip install -r api/requirements.txt
- run:
name: Run tests and collect coverage
command: pytest --cov api.calculator
- codecov/upload
workflows:
version: 2.1
build-test:
jobs:
- test-api