Merge pull request #91 from heseya/feature/B2B-303 #414
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: Tests | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: escolasoft/php:8.2-heseya | |
services: | |
mysql: | |
image: mysql:8 | |
env: | |
MYSQL_ROOT_PASSWORD: secret | |
MYSQL_DATABASE: store-api | |
MYSQL_PASSWORD: secret | |
redis: | |
image: redis:5.0 | |
env: | |
REDIS_PORT: 6379 | |
steps: | |
- name: Instantiate package | |
uses: actions/checkout@v2 | |
- name: Copy env | |
run: cp .env.testing .env | |
- name: Install dependencies | |
run: composer install --no-ansi --no-interaction --no-progress | |
- name: Generate keys | |
run: php artisan key:generate | |
- name: JWT | |
run: php artisan jwt:secret --force | |
- name: Copy env | |
run: cp .env .env.testing | |
- name: Migrations | |
run: php artisan migrate:fresh --env=testing | |
- name: Seed | |
run: php artisan db:seed | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-vendor | |
path: | | |
vendor/ | |
.env | |
retention-days: 1 | |
- name: Run tests | |
run: php -dpcov.enabled=1 -dpcov.exclude="~vendor~" ./vendor/bin/phpunit -d memory_limit=-1 --colors=never --coverage-text |