Skip to content

Commit e3e2f5f

Browse files
author
John Giannelos
authored
Merge pull request #400 from johngian/codecov-gh-action
Add gh-action to run codecov
2 parents 3b7ce71 + d37ddbd commit e3e2f5f

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/codecov.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: mozilla-django-oidc codecov
2+
on: [pull_request]
3+
4+
jobs:
5+
codecov:
6+
runs-on: ubuntu-latest
7+
name: Codecov
8+
steps:
9+
- name: Checkout repository
10+
uses: actions/checkout@v2
11+
- name: Setup python
12+
uses: actions/setup-python@v2
13+
with:
14+
python-version: 3.7
15+
- name: Install dependencies
16+
run: pip install codecov tox tox-gh-actions
17+
- name: Run tox
18+
run: tox
19+
- uses: codecov/codecov-action@v1
20+
with:
21+
verbose: true

0 commit comments

Comments
 (0)