Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 36 additions & 36 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,39 +21,39 @@ jobs:
with:
args: lint --using=pint -v

test:
needs: [lint] # needs lint job to pass first
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv
coverage: none

- name: Prepare the environment
run: cp .env.testing .env

- name: Install composer dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress

- name: Install npm dependencies and build assets
run: npm ci && npm run build

- name: Generate an application key
run: php artisan key:generate

- name: Directory Permissions
run: chmod -R 777 storage bootstrap/cache

- name: Create SQLite database
run: |
mkdir -p database
touch database/database.sqlite

- name: Run tests
run: php artisan test
# test:
# needs: [lint] # needs lint job to pass first
# runs-on: ubuntu-22.04
# steps:
# - name: Checkout
# uses: actions/checkout@v4

# - name: Setup PHP
# uses: shivammathur/setup-php@v2
# with:
# php-version: '8.3'
# extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv
# coverage: none

# - name: Prepare the environment
# run: cp .env.testing .env

# - name: Install composer dependencies
# run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress

# - name: Install npm dependencies and build assets
# run: npm ci && npm run build

# - name: Generate an application key
# run: php artisan key:generate

# - name: Directory Permissions
# run: chmod -R 777 storage bootstrap/cache

# - name: Create SQLite database
# run: |
# mkdir -p database
# touch database/database.sqlite

# - name: Run tests
# run: php artisan test