Skip to content

Add support for specifying release in artisan() method #101

Add support for specifying release in artisan() method

Add support for specifying release in artisan() method #101

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.3, 8.4]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, intl, iconv
coverage: none
- name: Install dependencies
run: |
composer update --prefer-dist --no-interaction --no-suggest
- name: Execute tests
run: vendor/bin/pest