Logging to NewRelic only warnings and higher severity. #109
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: Test on PostgreSQL | |
on: [ push ] | |
env: | |
APP_DB_TYPE: pgsql | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
operating_system: ['ubuntu-20.04', 'ubuntu-22.04'] | |
php_versions: | |
- '8.2' | |
# This param is not supported by ikalnytskyi/action-setup-postgres@v5 since it uses default packages. | |
# OS is changed instead. | |
# postgres_versions: | |
# - '12' | |
# - '13' | |
# - '14' | |
runs-on: '${{ matrix.operating_system }}' | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ikalnytskyi/action-setup-postgres@v5 | |
with: | |
username: postgres | |
password: 12345 | |
database: test | |
port: 5432 | |
# postgres-version: ${{ matrix.postgres_versions }} | |
- name: 'Setup PHP' | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php_versions }} | |
- name: Install dependencies | |
run: COMPOSER_MEMORY_LIMIT=-1 composer install --prefer-dist --no-interaction | |
- name: Run acceptance test cases | |
run: sh ./test_sh | |
- name: Run integration test cases | |
run: php _vendor/bin/codecept run integration | |
- name: Output logs | |
if: failure() | |
run: cat _cache/test/*.log && cat _tests/_output/email/*.txt && /home/runner/work/s2/s2/_tests/_output/ |