Merge pull request #196 from PortableStudios/fix/Form_NewEvent_Key #602
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: PHPUnit | |
on: | |
push: | |
branches: [ "*" ] | |
pull_request: | |
branches: [ "*" ] | |
permissions: | |
contents: read | |
jobs: | |
pest: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: composer install --prefer-dist --no-progress --ignore-platform-reqs | |
- name: Start Meilisearch | |
run: docker run -d -it --rm -p 7700:7700 -v $(pwd)/meili_data:/meili_data getmeili/meilisearch:v1.8 | |
- name: Start Mailhog | |
run: docker run -d -p 8025:8025 -p 1025:1025 mailhog/mailhog | |
- name: Pest | |
run: php vendor/bin/pest --stop-on-defect |