chore: update logger adapter constructors #29
Workflow file for this run
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: "Tests" | |
on: [pull_request] | |
jobs: | |
lint: | |
name: Tests ${{ matrix.php-versions }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-versions: ['8.1', '8.2', '8.3', 'nightly'] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup PHP ${{ matrix.php-versions }} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
- name: Validate composer.json and composer.lock | |
run: composer validate --strict | |
- name: Compose install | |
run: composer install --ignore-platform-reqs | |
- name: Run tests | |
run: | | |
export TEST_SENTRY_DSN=${{ secrets.TEST_SENTRY_DSN }} | |
export TEST_APPSIGNAL_KEY=${{ secrets.TEST_APPSIGNAL_KEY }} | |
export TEST_LOGOWL_KEY=${{ secrets.TEST_LOGOWL_KEY }} | |
export TEST_RAYGUN_KEY=${{ secrets.TEST_RAYGUN_KEY }} | |
composer test |