mirror of
https://github.com/michaelachrisco/ReadOnlyTraitLaravel.git
synced 2024-10-31 21:33:23 -07:00
45 lines
974 B
YAML
45 lines
974 B
YAML
name: PHP Build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build_php_version_82:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up PHP 8.2
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: 8.2
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo composer self-update
|
|
composer install -n --prefer-dist --no-plugins
|
|
|
|
- name: Run tests
|
|
run: ./vendor/bin/kahlan -reporter=verbose
|
|
|
|
build_php_version_83:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up PHP 8.3
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: 8.3
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo composer self-update
|
|
composer install -n --prefer-dist --no-plugins
|
|
|
|
- name: Run tests
|
|
run: ./vendor/bin/kahlan -reporter=verbose
|