Skip to content

avoid copying to the docker image: now we can edit the files locally #11

avoid copying to the docker image: now we can edit the files locally

avoid copying to the docker image: now we can edit the files locally #11

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
php_version: [8.1, 8.2, 8.3]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Compose
run: sudo apt-get update && sudo apt-get install -y docker-compose
- name: Run tests
run: ./test.sh ${{ matrix.php_version }}