Skip to content

Update composer file for better semantic versioning #18

Update composer file for better semantic versioning

Update composer file for better semantic versioning #18

Workflow file for this run

name: Development
on: [ push, pull_request ]
jobs:
build:
strategy:
matrix:
php: [ '7.4', '8.0' ]
runs-on: ubuntu-latest
steps:
- name: Checkout the tool
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Install dependencies
run: composer install
- name: Run unit tests
run: ./vendor/bin/phpunit tests