Skip to content

Adding two new tutorials #37

Adding two new tutorials

Adding two new tutorials #37

Workflow file for this run

name: PHP Composer
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Check code style
run: composer test:lint
- name: Run test suite
run: composer test:unit