Skip to content

Add support for iterables #6

Add support for iterables

Add support for iterables #6

Workflow file for this run

name: CI Pipeline
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
env:
COMPOSE_FILE: compose.yaml
steps:
- uses: actions/checkout@v4
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
target: ci
push: false
load: true
tags: recruiterphp/array:latest
build-args: |
PHP_VERSION=8.4
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Run test suite
run: make test