Skip to content

Web Installer Testing #317

Web Installer Testing

Web Installer Testing #317

name: Web Installer Testing
on:
workflow_dispatch:
inputs:
repository:
description: 'Repository to clone'
required: true
branch:
description: 'Branch to clone'
required: true
jobs:
InstallationTest:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
php: [8.1, 8.3]
steps:
- uses: moodlehq/moodle-webinstaller-test@main
with:
repository: ${{ github.event.inputs.repository }}
branch: ${{ github.event.inputs.branch }}
php: ${{ matrix.php }}