[TASK] Change log message level for rejected email addresses #24
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: 'Unit Test' | |
on: [ push, pull_request ] | |
jobs: | |
unit-test: | |
name: Unit Tests | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
include: | |
- php: '8.1' | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: nanasess/setup-php@v3 | |
with: | |
php-version: ${{ matrix.php }} | |
- name: Test on PHP ${{ matrix.php }} | |
run: | | |
make unit |