Skip to content

Update lock file

Update lock file #4

Workflow file for this run

name: CI
on: [push]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install packages
run: composer install
- name: Run PHPUnit tests
run: |
chmod +x ./tests.sh
./tests.sh
shell: bash