Skip to content

Commit

Permalink
fix: update basic usage example
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasrockhu-codecov committed Sep 28, 2023
1 parent 80898e7 commit dc39e52
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions src/examples/basic_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,17 @@ usage:
version: 2.1
orbs:
codecov: codecov/[email protected]
jobs:
test-and-upload-python:
docker:
- image: cimg/python:3.10
steps:
- checkout
- run: pip install -r requirements.txt
- run: pytest --cov .
- codecov/upload

workflows:
upload-to-codecov:
jobs:
- checkout
- codecov/upload
- test-and-upload-python

0 comments on commit dc39e52

Please sign in to comment.