Skip to content

example of converting ==|!= to ===|!== #446

example of converting ==|!= to ===|!==

example of converting ==|!= to ===|!== #446

Workflow file for this run

name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: composer install
- name: PHPUnit Tests
run: vendor/bin/phpunit -c tests/phpunit.xml