Skip to content

Merge pull request #15 from stronk7/phpcs_phpdoc_fixes #4

Merge pull request #15 from stronk7/phpcs_phpdoc_fixes

Merge pull request #15 from stronk7/phpcs_phpdoc_fixes #4

Workflow file for this run

name: Chatlogs CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
services:
mysql:
image: mysql:8
env:
MYSQL_ROOT_PASSWORD: test
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval 10s --health-timeout 5s --health-retries 3
strategy:
fail-fast: false
matrix:
include:
# Always the max supported PHP version on every branch.
- php: 8.3
moodle-branch: main
database: mysqli
- php: 8.3
moodle-branch: MOODLE_404_STABLE
database: mysqli
- php: 8.2
moodle-branch: MOODLE_403_STABLE
database: mysqli
- php: 8.2
moodle-branch: MOODLE_402_STABLE
database: mysqli
- php: 8.1
moodle-branch: MOODLE_401_STABLE
database: mysqli
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
path: plugin
- name: Setup PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: ${{ matrix.extensions }}
ini-values: max_input_vars=5000
coverage: none
- name: Initialise moodle-plugin-ci
run: |
composer create-project -n --no-dev --prefer-dist moodlehq/moodle-plugin-ci ci ^4
echo $(cd ci/bin; pwd) >> $GITHUB_PATH
echo $(cd ci/vendor/bin; pwd) >> $GITHUB_PATH
sudo locale-gen en_AU.UTF-8
echo "NVM_DIR=$HOME/.nvm" >> $GITHUB_ENV
- name: Install moodle-plugin-ci
run: |
moodle-plugin-ci install --db-user=root --db-pass=test --plugin ./plugin --db-host=127.0.0.1
env:
DB: ${{ matrix.database }}
MOODLE_BRANCH: ${{ matrix.moodle-branch }}
IGNORE_PATHS: tests/fixtures
- name: PHP Lint
if: ${{ !cancelled() }}
run: moodle-plugin-ci phplint
- name: PHP Mess Detector
continue-on-error: true # This step will show errors but will not fail
if: ${{ !cancelled() }}
run: moodle-plugin-ci phpmd
- name: Moodle Code Checker
if: ${{ !cancelled() }}
run: moodle-plugin-ci codechecker --max-warnings 0
- name: Validating
if: ${{ !cancelled() }}
run: moodle-plugin-ci validate
- name: Check upgrade savepoints
if: ${{ !cancelled() }}
run: moodle-plugin-ci savepoints
- name: Mustache Lint
if: ${{ !cancelled() }}
run: moodle-plugin-ci mustache
- name: Grunt
if: ${{ !cancelled() }}
run: moodle-plugin-ci grunt --max-lint-warnings 0
- name: PHPUnit tests
if: ${{ !cancelled() }}
run: moodle-plugin-ci phpunit
- name: Behat features
if: ${{ !cancelled() }}
run: moodle-plugin-ci behat --profile chrome
- name: Mark cancelled jobs as failed.
if: ${{ cancelled() }}
run: exit 1