From da4886397942e4af3d514c4d4712f1f858400e12 Mon Sep 17 00:00:00 2001 From: Yuriy Bakhtin Date: Tue, 5 Dec 2023 11:43:32 +0100 Subject: [PATCH] Update github workflow files --- .github/workflows/php-test-master.yml | 13 +++++++++++++ .github/workflows/php-test-next.yml | 13 +++++++++++++ .github/workflows/php-test-v1.14.yml | 13 +++++++++++++ 3 files changed, 39 insertions(+) create mode 100644 .github/workflows/php-test-master.yml create mode 100644 .github/workflows/php-test-next.yml create mode 100644 .github/workflows/php-test-v1.14.yml diff --git a/.github/workflows/php-test-master.yml b/.github/workflows/php-test-master.yml new file mode 100644 index 00000000..571c97ce --- /dev/null +++ b/.github/workflows/php-test-master.yml @@ -0,0 +1,13 @@ +name: PHP Codeception Tests - master + +on: + push: + schedule: + - cron: "0 0 * * 0" + +jobs: + tests: + uses: humhub/actions/.github/workflows/module-tests-master.yml@main + with: + module-id: tasks + use-rest-module: true diff --git a/.github/workflows/php-test-next.yml b/.github/workflows/php-test-next.yml new file mode 100644 index 00000000..ac7130f1 --- /dev/null +++ b/.github/workflows/php-test-next.yml @@ -0,0 +1,13 @@ +name: PHP Codeception Tests - next + +on: + push: + schedule: + - cron: "0 0 * * 0" + +jobs: + tests: + uses: humhub/actions/.github/workflows/module-tests-next.yml@main + with: + module-id: tasks + use-rest-module: true diff --git a/.github/workflows/php-test-v1.14.yml b/.github/workflows/php-test-v1.14.yml new file mode 100644 index 00000000..3a530a8a --- /dev/null +++ b/.github/workflows/php-test-v1.14.yml @@ -0,0 +1,13 @@ +name: PHP Codeception Tests - v1.14 + +on: + push: + schedule: + - cron: "0 0 * * 0" + +jobs: + tests: + uses: humhub/actions/.github/workflows/module-tests-v1.14.yml@main + with: + module-id: tasks + use-rest-module: true