Skip to content

Update codecov_action_example.yaml #3

Update codecov_action_example.yaml

Update codecov_action_example.yaml #3

name: API workflow
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: Test python API
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install requirements
run: pip install -r api/requirements.txt
- name: Run tests and collect coverage
run: pytest --cov=api.calculator --cov-report=xml
- name: Upload coverage reports to Codecov with GitHub Action
- uses: codecov/codecov-action@v4.2.0
env:
CODECOV_TOKEN: "test"