-
Notifications
You must be signed in to change notification settings - Fork 189
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Actions: Upload coverage on main branch
Signed-off-by: Sean Molenaar <[email protected]> Signed-off-by: Sean Molenaar <[email protected]>
- Loading branch information
1 parent
6e9e251
commit d9bde18
Showing
7 changed files
with
56 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Post-merge tasks | ||
on: | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
update-release-draft: | ||
runs-on: ubuntu-latest | ||
name: "Release Drafter" | ||
steps: | ||
- uses: release-drafter/release-drafter@v5 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
php: | ||
runs-on: ubuntu-latest | ||
continue-on-error: false | ||
name: "Coverage: Nextcloud PHP ${{ matrix.php-versions }}" | ||
strategy: | ||
matrix: | ||
nextcloud: ['stable21'] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '7.4' | ||
|
||
### Back to normal setup | ||
- name: Set up server non MySQL | ||
uses: SMillerDev/nextcloud-actions/setup-nextcloud@main | ||
with: | ||
cron: true | ||
version: ${{ matrix.nextcloud }} | ||
database-type: sqlite | ||
|
||
- name: Prime app build | ||
run: make | ||
|
||
- name: Configure server with app | ||
uses: SMillerDev/nextcloud-actions/setup-nextcloud-app@main | ||
with: | ||
app: 'news' | ||
check-code: true | ||
|
||
- name: Prep PHP tests | ||
run: cd ../server/apps/news && make php-test-dependencies | ||
- name: Unittests | ||
run: cd ../server/apps/news && make unit-test | ||
- name: Upload codecoverage | ||
run: cd ../server/apps/news && bash <(curl -s https://codecov.io/bash) -f build/php-unit.clover |
This file was deleted.
Oops, something went wrong.