Skip to content

Commit

Permalink
Fixes yaml indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
edgararuiz committed Oct 16, 2024
1 parent dabd031 commit f51951d
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 34 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/python-coverage.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Python coverage

on:
push:
branches: main

jobs:
python-tests:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: 3.13
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r python/requirements.txt
- name: Generate coverage report
run: |
pytest --cov=python --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
directory: python/coverage/reports/
env_vars: OS,PYTHON
fail_ci_if_error: true
files: python/coverage1.xml,python/coverage2.xml,!python/cache
flags: unittests
name: codecov-umbrella
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
34 changes: 0 additions & 34 deletions .github/workflows/python-coverage.yml

This file was deleted.

0 comments on commit f51951d

Please sign in to comment.