Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/privacy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-04-05 08:33:24 +0300
committerJoas Schilling <coding@schilljs.com>2022-04-05 08:33:24 +0300
commitf0daec0f9c2352153e1c718c2e302e6c44026212 (patch)
tree17c9820ea92a075a6bcf64d520643a88ac975d53
parentf821c484b5072cb3de27d2e73aa129a8e288b17a (diff)
Make sure ID is unique
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--.github/workflows/phpunit-mysql.yml6
-rw-r--r--.github/workflows/phpunit-oci.yml6
-rw-r--r--.github/workflows/phpunit-pgsql.yml6
-rw-r--r--.github/workflows/phpunit-sqlite.yml6
4 files changed, 12 insertions, 12 deletions
diff --git a/.github/workflows/phpunit-mysql.yml b/.github/workflows/phpunit-mysql.yml
index 251e998..8de46aa 100644
--- a/.github/workflows/phpunit-mysql.yml
+++ b/.github/workflows/phpunit-mysql.yml
@@ -88,15 +88,15 @@ jobs:
working-directory: apps/${{ env.APP_NAME }}
run: ./vendor/phpunit/phpunit/phpunit -c ${{ env.PHPUNIT_CONFIG }}
- - name: Check file existence
- id: check_files
+ - name: Check integration file existence
+ id: check_files_integration
uses: andstor/file-existence-action@v1
with:
files: ${{ env.PHPUNIT_INTEGRATION_CONFIG }}
- name: PHPUnit integration
# Only run if phpunit integration config file exists
- if: steps.check_files.outputs.files_exists == 'true'
+ if: steps.check_files_integration.outputs.files_exists == 'true'
working-directory: apps/${{ env.APP_NAME }}
run: ./vendor/phpunit/phpunit/phpunit -c ${{ env.PHPUNIT_INTEGRATION_CONFIG }}
diff --git a/.github/workflows/phpunit-oci.yml b/.github/workflows/phpunit-oci.yml
index 56eaf0b..acad23c 100644
--- a/.github/workflows/phpunit-oci.yml
+++ b/.github/workflows/phpunit-oci.yml
@@ -80,15 +80,15 @@ jobs:
working-directory: apps/${{ env.APP_NAME }}
run: ./vendor/phpunit/phpunit/phpunit -c ${{ env.PHPUNIT_CONFIG }}
- - name: Check file existence
- id: check_files
+ - name: Check integration file existence
+ id: check_files_integration
uses: andstor/file-existence-action@v1
with:
files: ${{ env.PHPUNIT_INTEGRATION_CONFIG }}
- name: PHPUnit integration
# Only run if phpunit integration config file exists
- if: steps.check_files.outputs.files_exists == 'true'
+ if: steps.check_files_integration.outputs.files_exists == 'true'
working-directory: apps/${{ env.APP_NAME }}
run: ./vendor/phpunit/phpunit/phpunit -c ${{ env.PHPUNIT_INTEGRATION_CONFIG }}
diff --git a/.github/workflows/phpunit-pgsql.yml b/.github/workflows/phpunit-pgsql.yml
index 409b24c..513a127 100644
--- a/.github/workflows/phpunit-pgsql.yml
+++ b/.github/workflows/phpunit-pgsql.yml
@@ -85,15 +85,15 @@ jobs:
working-directory: apps/${{ env.APP_NAME }}
run: ./vendor/phpunit/phpunit/phpunit -c ${{ env.PHPUNIT_CONFIG }}
- - name: Check file existence
- id: check_files
+ - name: Check integration file existence
+ id: check_files_integration
uses: andstor/file-existence-action@v1
with:
files: ${{ env.PHPUNIT_INTEGRATION_CONFIG }}
- name: PHPUnit integration
# Only run if phpunit integration config file exists
- if: steps.check_files.outputs.files_exists == 'true'
+ if: steps.check_files_integration.outputs.files_exists == 'true'
working-directory: apps/${{ env.APP_NAME }}
run: ./vendor/phpunit/phpunit/phpunit -c ${{ env.PHPUNIT_INTEGRATION_CONFIG }}
diff --git a/.github/workflows/phpunit-sqlite.yml b/.github/workflows/phpunit-sqlite.yml
index ad81911..2c8979c 100644
--- a/.github/workflows/phpunit-sqlite.yml
+++ b/.github/workflows/phpunit-sqlite.yml
@@ -74,15 +74,15 @@ jobs:
working-directory: apps/${{ env.APP_NAME }}
run: ./vendor/phpunit/phpunit/phpunit -c ${{ env.PHPUNIT_CONFIG }}
- - name: Check file existence
- id: check_files
+ - name: Check integration file existence
+ id: check_files_integration
uses: andstor/file-existence-action@v1
with:
files: ${{ env.PHPUNIT_INTEGRATION_CONFIG }}
- name: PHPUnit integration
# Only run if phpunit integration config file exists
- if: steps.check_files.outputs.files_exists == 'true'
+ if: steps.check_files_integration.outputs.files_exists == 'true'
working-directory: apps/${{ env.APP_NAME }}
run: ./vendor/phpunit/phpunit/phpunit -c ${{ env.PHPUNIT_INTEGRATION_CONFIG }}