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

fix(ci): Run tests also on schedule on master so we can get code coverage #1044

Merged
merged 2 commits into from
Nov 21, 2023
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
7 changes: 2 additions & 5 deletions .github/workflows/node-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,8 @@ name: Node tests

on:
pull_request:
push:
branches:
- main
- master
- stable*
schedule:
- cron: "0 3 * * *"

permissions:
contents: read
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/phpunit-sqlite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@

name: PHPUnit sqlite

on: pull_request
on:
pull_request:
schedule:
- cron: "0 3 * * *"

permissions:
contents: read
Expand Down
68 changes: 0 additions & 68 deletions .github/workflows/phpunit-summary-when-unrelated.yml

This file was deleted.

9 changes: 9 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
codecov:
branch: master
comment: false

# Ignore project status check as our CI only runs PHP tests for PHP PRs and JS tests for JS PRs
# Otherwise it will warn about project coverage drops
coverage:
status:
project: off
Loading