-
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update and rename run-tests.yml to tests.yml
- Loading branch information
1 parent
3cbec47
commit 91bb4c3
Showing
2 changed files
with
45 additions
and
45 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,45 @@ | ||
name: Tests | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
|
||
tests: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '8.3' | ||
|
||
|
||
- name: Start database | ||
run: sudo /etc/init.d/mysql start | ||
|
||
- name: Create database | ||
run: mysql -e "CREATE DATABASE IF NOT EXISTS liberu;" -uroot -proot | ||
|
||
- name: Copy environment file | ||
run: cp .env.testing .env | ||
|
||
- name: Install dependencies | ||
run: composer install | ||
|
||
- name: Generate application key | ||
run: php artisan key:generate | ||
|
||
- name: Run database migrations | ||
run: php artisan migrate | ||
|
||
- name: Seed database | ||
run: php artisan db:seed | ||
|
||
- name: Run tests | ||
run: php artisan test |