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.
2 parents 5c7b163 + 5d69d0e commit 9e6fee5Copy full SHA for 9e6fee5
.github/workflows/main.yml
@@ -36,6 +36,35 @@ jobs:
36
- name: Run tests
37
run: vendor/bin/phpunit
38
39
+
40
+ build_7_4:
41
+ runs-on: ubuntu-latest
42
43
+ steps:
44
45
+ - uses: actions/checkout@v2
46
+ - uses: php-actions/composer@v6
47
+ with:
48
+ php_version: 7.4
49
+ version: 2
50
51
+ - name: Setup PHP
52
+ uses: shivammathur/setup-php@v2
53
54
+ php-version: 7.4
55
56
+ - name: Update packages
57
+ run: sudo composer update
58
59
+ - name: PHP version
60
+ run: php -v
61
62
+ - name: Run phpcs
63
+ run: vendor/bin/phpcs
64
65
+ - name: Run tests
66
+ run: vendor/bin/phpunit
67
68
build_8_0:
69
runs-on: ubuntu-latest
70
0 commit comments