Skip to content

Feat: Migrate from travis to Github actions workflow #1

Feat: Migrate from travis to Github actions workflow

Feat: Migrate from travis to Github actions workflow #1

Workflow file for this run

name: Tests
on: [pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [8.0, nightly]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/[email protected]
with:
php-version: ${{ matrix.php-version }}
- name: Install Dependencies
run: composer install --ignore-platform-reqs
- name: Run Tests
run: composer test