Skip to content

Commit

Permalink
Amend README.txt to reflect actual state.
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaboesch committed Feb 19, 2025
1 parent 270cebf commit 5a6d6e1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:

services:
postgres:
image: postgres:13
image: postgres:16
env:
POSTGRES_USER: 'postgres'
POSTGRES_HOST_AUTH_METHOD: 'trust'
Expand All @@ -16,7 +16,7 @@ jobs:
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3

mariadb:
image: mariadb:10
image: mariadb:10.6
env:
MYSQL_USER: 'root'
MYSQL_ALLOW_EMPTY_PASSWORD: "true"
Expand All @@ -33,6 +33,9 @@ jobs:
- php: '8.3'
moodle-branch: 'main'
database: 'pgsql'
- php: '8.3'
moodle-branch: 'MOODLE_405_STABLE'
database: 'mariadb'
- php: '8.2'
moodle-branch: 'MOODLE_404_STABLE'
database: 'pgsql'
Expand Down
6 changes: 4 additions & 2 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ survey tool.
--------------------------------------------------------------------------------
Developers Note:

There is no main branch. Questionnaire is maintained in MOODLE_XX_STABLE
There is no main branch. Questionnaire is maintained in MOODLE_XXX_STABLE
branches. Use the latest STABLE branch for development or installation.
The current stable branch is MOODLE_400_STABLE, and supports Moodle 4.0 and up.
The current stable branch is MOODLE_404_STABLE, and supports Moodle 4.4 and up.
Use the MOODLE_401_STABLE branch for Moodle 4.1 through 4.3.
Use the MOODLE_400_STABLE branch for Moodle 4.0.
Use the MOODLE_311_STABLE branch for Moodle 3.9 through 3.11.

--------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion tests/custom_completion_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public function get_state_provider(): array {
*
* @covers \mod_questionnaire\completion\custom_completion
*/
public function test_get_state(string $rule, int $available, ?bool $submitted, ?int $status, ?string $exception) {
public static function test_get_state(string $rule, int $available, ?bool $submitted, ?int $status, ?string $exception) {
if (!is_null($exception)) {
$this->expectException($exception);
}
Expand Down

0 comments on commit 5a6d6e1

Please sign in to comment.