docker-php-extension-installer/.github/workflows/monitor-php8.4.yml

37 lines
966 B
YAML
Raw Normal View History

2024-07-30 08:40:46 +00:00
name: Monitor PHP 8.4
on:
schedule:
- cron: "0 6 * * *"
repository_dispatch:
types:
2024-07-30 08:40:46 +00:00
- monitor-php8.4
jobs:
test_extensions:
strategy:
fail-fast: false
matrix:
distro:
- alpine3.19
2024-07-10 08:45:46 +00:00
- alpine3.20
2021-08-24 14:02:49 +00:00
- bullseye
- bookworm
name: Check on ${{ matrix.distro }}
runs-on: ubuntu-latest
env:
IPETEST_DOCKER_DISTRO: ${{ matrix.distro }}
2024-07-30 08:40:46 +00:00
IPETEST_ONLY_PHPVERSIONS: "8.4"
steps:
- name: Checkout
2024-06-24 10:03:47 +00:00
uses: actions/checkout@v4
- name: Test extensions
run: ./scripts/ci-test-extensions all
- name: Notify failures
if: failure()
uses: appleboy/telegram-action@master
with:
token: ${{ secrets.TELEGRAM_TOKEN }}
to: ${{ secrets.TELEGRAM_TO }}
2024-07-30 08:40:46 +00:00
message: Testing packages against PHP 8.4 failed on https://github.com/mlocati/docker-php-extension-installer/actions/workflows/monitor-php8.4.yml