-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Eddie Carswell <eddiecarswell13@yahoo.com>
- Loading branch information
1 parent
7829cb0
commit e4ae10d
Showing
1 changed file
with
21 additions
and
0 deletions.
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Workflow for Codecov example-python | ||
Check warning on line 1 in .github/workflows/codecov-analysis.yml Codacy Production / Codacy Static Code Analysis.github/workflows/codecov-analysis.yml#L1
Check notice Code scanning / Checkov (reported by Codacy) Ensure top-level permissions are not set to write-all Note
Ensure top-level permissions are not set to write-all
|
||
|
||
on: | ||
push: | ||
branches: [ "master", "dev" ] | ||
pull_request: | ||
branches: [ "master", "dev" ] | ||
|
||
jobs: | ||
run: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@master | ||
|
||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@main | ||
with: | ||
flags: smart-tests | ||
verbose: true | ||
token: ${{ secrets.CODECOV_TOKEN }} |