Skip to content

Commit

Permalink
add: test workflow wip
Browse files Browse the repository at this point in the history
  • Loading branch information
matfire committed Oct 16, 2024
1 parent 23e070a commit 6ad8f0c
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Run test suite

on: [push]

jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [8.3]

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: json, dom, curl, libxml, mbstring
coverage: none

- name: Install Dependencies
run: composer install --no-progress --no-suggest

- name: Run Pest
run: php artisan test

0 comments on commit 6ad8f0c

Please sign in to comment.