Skip to content

Commit

Permalink
Try to fix CI again
Browse files Browse the repository at this point in the history
  • Loading branch information
lvps committed Apr 26, 2024
1 parent e9bb3f7 commit e1653d3
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,22 @@ jobs:
- name: Install dependencies
uses: php-actions/composer@v6
with:
# If you use the PHPUnit action, uncomment this and comment php_extensions
# args: --ignore-platform-reqs
php_extensions: ldap mbstring json sqlite3
php_version: "${{ matrix.php }}"

- name: Linting
run: composer lint
uses: php-actions/composer@v6
with:
php_extensions: ldap mbstring json sqlite3
php_version: "${{ matrix.php }}"
command: lint

- name: Create config
run: cp config/config-example.php config/config.php

- name: Run tests
run: composer test
uses: php-actions/composer@v6
with:
php_extensions: ldap mbstring json sqlite3
php_version: "${{ matrix.php }}"
command: test

0 comments on commit e1653d3

Please sign in to comment.