Fixed compatibility of EventLogger::log with PSR log #29
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: PHP Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Start Docker Containers | |
run: docker-compose up -d | |
- name: Install dependencies | |
run: docker-compose exec -T php composer install | |
- name: Run Tests | |
run: docker-compose exec -T php composer test |