forked from SatelliteQE/robottelo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename GHA files, add codecov to master
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
Showing
2 changed files
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
@@ -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 | ||
|
@@ -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. | ||
|
1 change: 1 addition & 0 deletions
1
.github/workflows/action.yml → .github/workflows/pull_request.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | ||
|