Fix CI (maybe) #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
run-test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: ['8.2', '8.3'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Cache Composer dependencies | |
uses: actions/cache@v2 | |
with: | |
path: /tmp/composer-cache | |
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }} | |
- 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 | |
- name: Create config | |
run: cp config/config-example.php config/config.php | |
- name: Run tests | |
run: composer test |