Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
name: Web Installer Testing
2
 
3
on:
4
  workflow_dispatch:
5
 
6
jobs:
7
  InstallationTest:
8
    runs-on: ${{ matrix.os }}
9
    strategy:
10
      fail-fast: false
11
      matrix:
12
        os: [ubuntu-latest]
13
        php: [8.2, 8.4]
14
    steps:
15
      - name: Construct repository URL
16
        run: echo "REPOSITORY_URL=${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}" >> $GITHUB_ENV
17
        shell: bash
18
 
19
      - uses: moodlehq/moodle-webinstaller-test@main
20
        with:
21
          repository: ${{ env.REPOSITORY_URL }}
22
          branch: ${{ github.ref_name }}
23
          php: ${{ matrix.php }}