Skip to content

Check if the field is a url and check that #37

Check if the field is a url and check that

Check if the field is a url and check that #37

Workflow file for this run

name: Laravel
on:
push:
branches:
- main
- develop
- "feature/**"
pull_request:
branches: ["main", "develop"]
jobs:
laravel-tests:
runs-on: ubuntu-22.04
steps:
- uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e
with:
php-version: "8.1"
- uses: actions/checkout@v3
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Create Database
run: |
mkdir -p database
touch database/database.sqlite
- name: Execute tests (Unit and Feature tests) via PHPUnit
env:
DB_CONNECTION: sqlite
DB_DATABASE: database/database.sqlite
run: vendor/bin/pest