Skip to content

Update class.ilCourseXMLParser.php : follow ups to the addition of th… #49

Update class.ilCourseXMLParser.php : follow ups to the addition of th…

Update class.ilCourseXMLParser.php : follow ups to the addition of th… #49

Workflow file for this run

name: checks
on: [pull_request, push]
permissions:
contents: read
pull-requests: read
jobs:
tests:
runs-on: ubuntu-latest
outputs:
all: ${{ steps.changes.outputs.all }}
strategy:
fail-fast: false
matrix:
php: [7.3, 7.4]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, gd, json, readline, xsl
tools: composer:v1
coverage: none
- name: Install dependencies
run: composer install --no-interaction --no-progress
- name: PHP Unit Test
run: CI/PHPUnit/run_tests.sh
env:
GHRUN: "yes"
- name: PHP CS Fixer
run: CI/PHP-CS-Fixer/run_check.sh
env:
GHRUN: "yes"
PR_NUMBER: ${{ github.event.pull_request.number }}
- name: Language Sort Check
run: CI/sort_langfile_entries.sh check
env:
GHRUN: "yes"
PR_NUMBER: ${{ github.event.number }}
GH_SHA: ${{ github.sha }}
- name: Special Char Checker
run: CI/Special-Char-Checker/special-char-checker.sh
env:
GHRUN: "yes"
PR_NUMBER: ${{ github.event.pull_request.number }}