Web Installer Testing #523
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |