Skip to content

Iterable IPv4 & CI testing #1

Iterable IPv4 & CI testing

Iterable IPv4 & CI testing #1

Workflow file for this run

name: CI

Check failure on line 1 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yaml

Invalid workflow file

`pull-request` is not a valid event name
on: [push, pull-request]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ '5.6', '7.4', '8.2' ]
steps:
- name: Code Checkout
uses: actions/checkout@v3
run: echo "The ${{ github.repository }} repository has been cloned to the runner."
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Composer
uses: php-actions/composer@v6
run: echo "Composer dependencies have been installed"
- name: PHPUnit
run: vendor/bin/phpunit