Skip to content

fix: yaml

fix: yaml #692

Workflow file for this run

name: Workflow for Codecov example-python
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout codecov-cli test branch

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

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 7
uses: actions/checkout@v4
with:
repository: codecov/codecov-cli
ref: 1c261cd6b9bbef57bba3595c8688c388ce69ac5d
submodules: 'true'
- name: Run pip install .
run: |
pip install -r requirements.txt
pip install .
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests and collect coverage
run: pytest --cov app