-
Notifications
You must be signed in to change notification settings - Fork 0
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
0bd6ac1
commit aef2221
Showing
1 changed file
with
22 additions
and
22 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 |
---|---|---|
@@ -1,29 +1,29 @@ | ||
name: Tests | ||
# name: Tests | ||
|
||
on: [pull_request] | ||
# on: [pull_request] | ||
|
||
jobs: | ||
tests: | ||
runs-on: ubuntu-latest | ||
# jobs: | ||
# tests: | ||
# runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
# steps: | ||
# - uses: actions/checkout@v2 | ||
|
||
- name: Cache composer dependencies | ||
uses: actions/cache@v4 | ||
with: | ||
path: vendor | ||
key: composer-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: | | ||
composer- | ||
# - name: Cache composer dependencies | ||
# uses: actions/cache@v4 | ||
# with: | ||
# path: vendor | ||
# key: composer-${{ hashFiles('**/composer.lock') }} | ||
# restore-keys: | | ||
# composer- | ||
|
||
- uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: 8.2 | ||
coverage: none | ||
# - uses: shivammathur/setup-php@v2 | ||
# with: | ||
# php-version: 8.2 | ||
# coverage: none | ||
|
||
- name: Install Composer dependencies | ||
run: composer install --no-interaction --prefer-dist --optimize-autoloader | ||
# - name: Install Composer dependencies | ||
# run: composer install --no-interaction --prefer-dist --optimize-autoloader | ||
|
||
- name: Run Test suite | ||
run: php artisan test -p | ||
# - name: Run Test suite | ||
# run: php artisan test -p |