Skip to content

Commit

Permalink
Rename GHA files, add codecov to master
Browse files Browse the repository at this point in the history
The GHA written for execution on merges to master branch did not include
codecov - so we haven't been uploading reports, and our codecov
comparisons are out of date on PRs.
  • Loading branch information
mshriver committed Jan 19, 2021
1 parent be03721 commit 4b4bf35
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# CI stages to execute against master branch on PR merge
name: update_robottelo_image

on: [push]

env:
PYCURL_SSL_LIBRARY: openssl

jobs:
codechecks:
name: Code Quality
Expand All @@ -10,7 +14,6 @@ jobs:
matrix:
python-version: [3.8, 3.9]
env:
PYCURL_SSL_LIBRARY: openssl
SATELLITE_VERSION: 6.9
steps:
- name: Checkout Robottelo
Expand Down Expand Up @@ -54,6 +57,13 @@ jobs:
if: failure()
run: git diff

- name: Upload Codecov Coverage
uses: codecov/[email protected]
with:
file: coverage.xml
name: ${{ github.run_id }}-py-${{ matrix.python-version }}


robottelo_container:
needs: codechecks
name: Update Robottelo container image on Quay.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# CI stages to execute against Pull Requests
name: Robottelo - CI

on:
Expand Down

0 comments on commit 4b4bf35

Please sign in to comment.