/
home
/
techb158
/
ileadtechnology.com
/
vendor
/
mpdf
/
mpdf
/
.github
/
workflows
/
/home/techb158/ileadtechnology.com/vendor/mpdf/mpdf/.github/workflows
mkdir
upload
Name
Size
Mode
Actions
coverage.yml
859
0644
edit
dl
rm
cs.yml
839
0644
edit
dl
rm
tests.yml
1074
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/vendor/mpdf/mpdf/.github/workflows/cs.yml
(839B)
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions name: "Coding standard check" on: pull_request: push: branches: - "development" - "test" jobs: cs: name: "Coding standard" runs-on: ${{ matrix.operating-system }} strategy: matrix: php-version: - "7.4" operating-system: [ubuntu-latest] steps: - name: "Checkout" uses: "actions/checkout@v3" - name: "Install PHP" uses: "shivammathur/setup-php@v2" with: coverage: "none" php-version: "${{ matrix.php-version }}" extensions: "mbstring" tools: composer:v2 - name: "Install dependencies" run: "composer install --no-interaction --no-progress" - name: "CS" run: composer cs
Save
cmd:
run