Skip to content

Commit

Permalink
Added codecov workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Eddie Carswell <eddiecarswell13@yahoo.com>
  • Loading branch information
AfroThundr3007730 committed Mar 12, 2024
1 parent 7829cb0 commit e4ae10d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/codecov-analysis.yml
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

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

.github/workflows/codecov-analysis.yml#L1

Ensure top-level permissions are not set to write-all

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 }}

0 comments on commit e4ae10d

Please sign in to comment.