We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dad162 commit 3cf5c1aCopy full SHA for 3cf5c1a
.github/workflows/ci.yml
@@ -3,12 +3,38 @@ name: CI
3
on: [push, pull_request]
4
5
jobs:
6
+ tests-php-5.3:
7
+ runs-on: ubuntu-latest
8
+
9
+ strategy:
10
+ matrix:
11
+ php: 5.3
12
13
+ steps:
14
+ - name: Checkout code
15
+ uses: actions/checkout@v2
16
17
+ - name: Setup PHP
18
+ uses: shivammathur/setup-php@v2
19
+ with:
20
+ php-version: ${{ matrix.php }}
21
+ coverage: none
22
23
+ - name: Validate composer.json and composer.lock
24
+ run: composer validate
25
26
+ - name: Install dependencies
27
+ run: composer install --prefer-dist --no-progress --no-interaction --no-suggest
28
29
+ - name: Run test suite
30
+ run: vendor/bin/phpunit
31
32
tests:
33
runs-on: ubuntu-latest
34
35
strategy:
36
matrix:
- php: [5.3, 5.4, 5.6, 7.0, 7.1, 7.2, 7.3, 7.4, 8.0]
37
+ php: [5.4, 5.6, 7.0, 7.1, 7.2, 7.3, 7.4, 8.0]
38
39
steps:
40
- name: Checkout code
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments