We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03be9d1 commit 81bccd4Copy full SHA for 81bccd4
1 file changed
.github/workflows/test.yml
@@ -8,15 +8,16 @@ jobs:
8
test:
9
strategy:
10
matrix:
11
- PHP_VERSION: [ '7.3', '7.4', '8.0']
+ PHP_VERSION: [ '7.3', '7.4', '8.0', '8.1']
12
name: Test Apache action
13
runs-on: ubuntu-latest
14
steps:
15
- name: Create fake site
16
run: |
17
mkdir /tmp/sut
18
echo '<?php' | sudo tee /tmp/sut/index.php
19
- echo ' print "<strong>Hello World</strong>";' | sudo tee -a /tmp/sut/index.php
+ echo ' $text = "It works!";' | sudo tee -a /tmp/sut/index.php
20
+ echo ' print "<strong>$text</strong>";' | sudo tee -a /tmp/sut/index.php
21
shell: bash
22
- name: Setup PHP
23
uses: shivammathur/setup-php@v2
@@ -31,4 +32,4 @@ jobs:
31
32
http-port: 9090
33
- name: Test fake site
34
- curl -sSf http://127.0.0.1:9090 > /dev/null
35
+ curl -sSf http://127.0.0.1:9090
0 commit comments