Skip to content

Run test suite

Run test suite #17

Workflow file for this run

name: Run test suite
on:
[ workflow_dispatch, workflow_call ]
jobs:
testbox:
runs-on: ubuntu-latest
strategy:
matrix:
cfengine: [ "lucee@5", "lucee@6", "adobe@2018", "adobe@2021", "adobe@2023" ]
container:
image: foundeo/cfml-ci-tools:latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install dependencies
run: box install
- name: Start a server
run: box server start cfengine=${{ matrix.cfengine }} port=8080
- name: Run TestBox Tests
run: box testbox run "http://localhost:8080/test/index.cfm"