Skip to content

Commit

Permalink
Merge pull request #400 from johngian/codecov-gh-action
Browse files Browse the repository at this point in the history
Add gh-action to run codecov
  • Loading branch information
John Giannelos committed Mar 21, 2021
2 parents 3b7ce71 + d37ddbd commit e3e2f5f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: mozilla-django-oidc codecov
on: [pull_request]

jobs:
codecov:
runs-on: ubuntu-latest
name: Codecov
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install dependencies
run: pip install codecov tox tox-gh-actions
- name: Run tox
run: tox
- uses: codecov/codecov-action@v1
with:
verbose: true

0 comments on commit e3e2f5f

Please sign in to comment.