-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b048ba4
commit 25bb138
Showing
2 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# These are supported funding model platforms | ||
|
||
open_collective: leaf | ||
github: leafsphp |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Run Tests | ||
|
||
on: ['push', 'pull_request'] | ||
|
||
env: | ||
MYSQL_DATABASE: leaf | ||
DB_USER: root | ||
DB_PASSWORD: root | ||
|
||
jobs: | ||
ci: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
php: ['7.4', '8.0', '8.1', '8.2', '8.3'] | ||
|
||
name: PHP ${{ matrix.php }} - ${{ matrix.os }} | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Initialize MySQL | ||
run: sudo systemctl start mysql.service | ||
|
||
- name: Initialize first database | ||
run: | | ||
mysql -e 'CREATE DATABASE ${{ env.MYSQL_DATABASE }};' \ | ||
-u${{ env.DB_USER }} -p${{ env.DB_PASSWORD }} | ||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php }} | ||
tools: composer:v2 | ||
coverage: xdebug | ||
|
||
- name: Install PHP dependencies | ||
run: composer update --no-interaction --no-progress | ||
|
||
- name: All Tests | ||
run: composer run-script test |