hack ci #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .github/workflows/ci.yml | ||
name: ci | ||
on: [push, pull_request] | ||
jobs: | ||
setup: | ||
name: 4.0+ | ||
env: | ||
IGNORE_PATHS: tests/fixtures | ||
runs-on: 'ubuntu-latest' | ||
services: | ||
postgres: | ||
image: postgres:10 | ||
env: | ||
POSTGRES_USER: 'postgres' | ||
POSTGRES_HOST_AUTH_METHOD: 'trust' | ||
options: >- | ||
--health-cmd pg_isready | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 3 | ||
ports: | ||
- 5432:5432 | ||
mariadb: | ||
image: mariadb:10.5 | ||
env: | ||
MYSQL_USER: 'root' | ||
MYSQL_ALLOW_EMPTY_PASSWORD: "true" | ||
ports: | ||
- 3306:3306 | ||
options: >- | ||
--health-cmd="mysqladmin ping" | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 3 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
database: ['mariadb', 'pgsql'] | ||
moodle-branch: ['master'] | ||
node: ['14.15'] | ||
php: ['7.3'] | ||
steps: | ||
- name: Run plugin setup | ||
uses: catalyst/catalyst-moodle-workflows/.github/plugin/setup@nvm-workaround | ||
with: | ||
extra_php_extensions: [] | ||
Check failure on line 52 in .github/workflows/ci.yml GitHub Actions / ciInvalid workflow file
|
||
extra_plugin_runners: [] | ||
disable_behat: true | ||
disable_phplint: false | ||
disable_phpunit: false | ||
disable_grunt: false | ||
highest_moodle_branch: 'master' |