Browse Source

fix: Run tests only on pull requests and scheduled

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
tags/v29.0.0beta1
Ferdinand Thiessen 6 months ago
parent
commit
4a1ff0b6da
No account linked to committer's email address

+ 2
- 10
.github/workflows/object-storage-azure.yml View File

@@ -1,16 +1,8 @@
name: Object storage azure
on:
pull_request:
paths:
- '.github/workflows/**'
- '3rdparty/**'
- '**/*.php'
- '**/lib/**'
- '**/tests/**'
- '**/vendor-bin/**'
- '.php-cs-fixer.dist.php'
- 'composer.json'
- 'composer.lock'
schedule:
- cron: "15 2 * * *"

concurrency:
group: object-storage-azure-${{ github.head_ref || github.run_id }}

+ 2
- 10
.github/workflows/object-storage-s3.yml View File

@@ -1,16 +1,8 @@
name: Object storage S3
on:
pull_request:
paths:
- '.github/workflows/**'
- '3rdparty/**'
- '**/*.php'
- '**/lib/**'
- '**/tests/**'
- '**/vendor-bin/**'
- '.php-cs-fixer.dist.php'
- 'composer.json'
- 'composer.lock'
schedule:
- cron: "15 2 * * *"

concurrency:
group: object-storage-s3-${{ github.head_ref || github.run_id }}

+ 2
- 10
.github/workflows/object-storage-swift.yml View File

@@ -1,16 +1,8 @@
name: Object storage Swift
on:
pull_request:
paths:
- '.github/workflows/**'
- '3rdparty/**'
- '**/*.php'
- '**/lib/**'
- '**/tests/**'
- '**/vendor-bin/**'
- '.php-cs-fixer.dist.php'
- 'composer.json'
- 'composer.lock'
schedule:
- cron: "15 2 * * *"

concurrency:
group: object-storage-swift-${{ github.head_ref || github.run_id }}

+ 2
- 5
.github/workflows/phpunit-mariadb.yml View File

@@ -7,11 +7,8 @@ name: PHPUnit mariadb

on:
pull_request:
push:
branches:
- main
- master
- stable*
schedule:
- cron: "5 2 * * *"

permissions:
contents: read

+ 2
- 3
.github/workflows/phpunit-memcached.yml View File

@@ -7,9 +7,8 @@ name: PHPUnit memcached

on:
pull_request:
push:
branches:
- stable*
schedule:
- cron: "5 2 * * *"

permissions:
contents: read

+ 3
- 6
.github/workflows/phpunit-mysql.yml View File

@@ -7,11 +7,8 @@ name: PHPUnit mysql

on:
pull_request:
push:
branches:
- main
- master
- stable*
schedule:
- cron: "5 2 * * *"

permissions:
contents: read
@@ -25,7 +22,7 @@ jobs:
runs-on: ubuntu-latest

outputs:
src: ${{ steps.changes.outputs.src}}
src: ${{ steps.changes.outputs.src }}

steps:
- uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50 # v2.11.1

+ 3
- 6
.github/workflows/phpunit-nodb.yml View File

@@ -8,11 +8,8 @@ name: PHPUnit nodb

on:
pull_request:
push:
branches:
- main
- master
- stable*
schedule:
- cron: "5 2 * * *"

permissions:
contents: read
@@ -26,7 +23,7 @@ jobs:
runs-on: ubuntu-latest

outputs:
src: ${{ steps.changes.outputs.src}}
src: ${{ steps.changes.outputs.src }}

steps:
- uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50 # v2.11.1

+ 5
- 2
.github/workflows/phpunit-oci.yml View File

@@ -1,6 +1,9 @@
name: PHPUnit oci

on: pull_request
on:
pull_request:
schedule:
- cron: "5 2 * * *"

permissions:
contents: read
@@ -14,7 +17,7 @@ jobs:
runs-on: ubuntu-latest

outputs:
src: ${{ steps.changes.outputs.src}}
src: ${{ steps.changes.outputs.src }}

steps:
- uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50 # v2.11.1

+ 3
- 6
.github/workflows/phpunit-pgsql.yml View File

@@ -7,11 +7,8 @@ name: PHPUnit pgsql

on:
pull_request:
push:
branches:
- main
- master
- stable*
schedule:
- cron: "5 2 * * *"

permissions:
contents: read
@@ -25,7 +22,7 @@ jobs:
runs-on: ubuntu-latest

outputs:
src: ${{ steps.changes.outputs.src}}
src: ${{ steps.changes.outputs.src }}

steps:
- uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50 # v2.11.1

+ 3
- 6
.github/workflows/phpunit-sqlite.yml View File

@@ -7,11 +7,8 @@ name: PHPUnit sqlite

on:
pull_request:
push:
branches:
- main
- master
- stable*
schedule:
- cron: "5 2 * * *"

permissions:
contents: read
@@ -25,7 +22,7 @@ jobs:
runs-on: ubuntu-latest

outputs:
src: ${{ steps.changes.outputs.src}}
src: ${{ steps.changes.outputs.src }}

steps:
- uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50 # v2.11.1

Loading…
Cancel
Save