Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

try updating codecov #492

Merged
merged 3 commits into from
Oct 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/climpred_installs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: climpred installs

on: [push, pull_request_target]
on: pull_request_target

jobs:
install-climpred: # Installs climpred on various OS.
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/climpred_testing.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: climpred testing

on: [push, pull_request_target]
on: pull_request_target

jobs:
test: # Runs testing suite on various python versions.
Expand Down Expand Up @@ -33,10 +33,11 @@ jobs:
conda activate climpred-minimum-tests
pytest --cov=climpred --cov-report=xml
- name: Upload coverage to codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v1.0.7
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
fail_ci_if_error: true
fail_ci_if_error: false

docs_notebooks: # Checks that pre-compiled notebooks in docs still work.
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Lint

on: [push, pull_request_target]
on: pull_request_target

jobs:
lint: # Runs linting package checks for code styling.
Expand Down