Skip to content

SOL-185: Add SQS channel #5

SOL-185: Add SQS channel

SOL-185: Add SQS channel #5

Workflow file for this run

name: Build
on:
pull_request:
jobs:
test:
strategy:
matrix:
illuminate-version:
- 9
- 10
php-version:
- 8.0
- 8.1
- 8.2
exclude:
- illuminate-version: 10
php-version: 8.0
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: composer:v2
- name: Install dependencies
run: |
composer require \
--no-ansi \
--no-interaction \
--no-progress \
--no-scripts \
--prefer-dist \
illuminate/support:^${{ matrix.illuminate-version }}
- name: Lint Code
run: vendor/bin/tlint
- name: Run tests
run: vendor/bin/phpunit