Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Automatic Test Overhaul #22

Automatic Test Overhaul

Automatic Test Overhaul #22

Workflow file for this run

name: Jamf Plugin CI
on:
push:
branches:
- "main"
tags:
- 'v*'
pull_request:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
ci:
name: "GLPI ${{ matrix.glpi-version }} - php:${{ matrix.php-version }} - ${{ matrix.db-image }}"
strategy:
fail-fast: false
matrix:
include:
- { glpi-version: "10.0.x", php-version: "7.4", db-image: "mariadb:10.5" }
- { glpi-version: "10.0.x", php-version: "8.1", db-image: "mariadb:10.5" }
- { glpi-version: "10.0.x", php-version: "8.2", db-image: "mariadb:11.0" }
uses: "glpi-project/plugin-ci-workflows/.github/workflows/continuous-integration.yml@v1"
with:
plugin-key: "jamf"
glpi-version: "${{ matrix.glpi-version }}"
php-version: "${{ matrix.php-version }}"
db-image: "${{ matrix.db-image }}"