forked from ilios/ilios
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (34 loc) · 1.08 KB
/
future-php.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Future PHP Versions
on:
schedule:
- cron: '33 1 * * 1' # weekly, on Monday morning
env:
MAILER_DSN: null://null
ILIOS_LOCALE: en
ILIOS_SECRET: ThisTokenIsNotSoSecretChangeIt
ILIOS_FILE_SYSTEM_STORAGE_PATH: /tmp
SYMFONY_DEPRECATIONS_HELPER: disabled=1
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_ILIOS_DEPLOYMENT_WEBHOOK_URL }}
future_php: 8.2
jobs:
test:
name: Test PHP v${{ env.latest_php }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use PHP ${{ env.latest_php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ env.latest_php }}
coverage: none
tools: pecl
extensions: apcu
- name: install dependencies
run: composer install --no-interaction --prefer-dist
- name: Run Tests
run: vendor/bin/phpunit
- uses: act10ns/[email protected]
with:
status: ${{ job.status }}
message: PHP v${{ env.latest_php }} (future version) tests failed {{ env.GITHUB_SERVER_URL }}/{{ env.GITHUB_REPOSITORY }}/actions/runs/{{ env.GITHUB_RUN_ID }}
if: failure()