Skip to content

Merge pull request #1 from stayallive/octane #12

Merge pull request #1 from stayallive/octane

Merge pull request #1 from stayallive/octane #12

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
- develop
- release/**
jobs:
phpunit:
runs-on: ubuntu-latest
timeout-minutes: 15
env:
COMPOSER_NO_INTERACTION: 1
strategy:
fail-fast: false
matrix:
php: [ "8.1" ]
name: phpunit (PHP:${{ matrix.php }})
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
tools: composer:v2
- name: Install Composer dependencies
run: composer install --no-interaction --prefer-dist --no-progress
- name: Run phpunit
run: composer test:ci