Merge pull request #3910 from nextcloud/tests/php-paths

Limit php tests to certain fails on pull requests
This commit is contained in:
Julius Härtl
2022-07-12 09:28:18 +02:00
committed by GitHub
3 changed files with 21 additions and 1 deletions

View File

@@ -1,7 +1,11 @@
name: Package build name: Package build
on: on:
pull_request: push:
branches:
- main
- master
- stable*
jobs: jobs:
build: build:

View File

@@ -2,6 +2,14 @@ name: Integration tests
on: on:
pull_request: pull_request:
paths:
- '.github/workflows/integration.yml'
- 'appinfo/**'
- 'lib/**'
- 'templates/**'
- 'tests/**'
- 'composer.json'
- 'composer.lock'
push: push:
branches: branches:
- master - master

View File

@@ -2,6 +2,14 @@ name: PHPUnit
on: on:
pull_request: pull_request:
paths:
- '.github/workflows/phpunit.yml'
- 'appinfo/**'
- 'lib/**'
- 'templates/**'
- 'tests/**'
- 'composer.json'
- 'composer.lock'
push: push:
branches: branches:
- master - master