Skip to content

User should recieve a mail notification on event registeration #128 #1

User should recieve a mail notification on event registeration #128

User should recieve a mail notification on event registeration #128 #1

Workflow file for this run

name: DevNation-CMS CI
on:
push:
branches:
- main
- feature/*
pull_request: # Spustí sa pri vytvorení pull requestu.
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2.12'
- name: Install dependencies
run: composer install
- name: Run tests # Spustí testy cez Laravel Artisan.
run: php artisan test