Skip to content

hack ci

hack ci #19

Workflow file for this run

# .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

View workflow run for this annotation

GitHub Actions / ci

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 52, Col: 33): A sequence was not expected .github/workflows/ci.yml (Line: 53, Col: 33): A sequence was not expected
extra_plugin_runners: []
disable_behat: true
disable_phplint: false
disable_phpunit: false
disable_grunt: false
highest_moodle_branch: 'master'