File tree Expand file tree Collapse file tree 1 file changed +10
-15
lines changed Expand file tree Collapse file tree 1 file changed +10
-15
lines changed Original file line number Diff line number Diff line change 1
- name : Rust
1
+ name : CI
2
2
3
3
on :
4
4
push :
13
13
RUSTFLAGS : " -D warnings"
14
14
15
15
jobs :
16
- all :
17
- name : All
16
+ ci :
17
+ name : CI
18
18
strategy :
19
19
fail-fast : false
20
20
matrix :
21
21
os :
22
22
- ubuntu-latest
23
23
php-version :
24
- - php-7.3.24
24
+ - 7.3
25
+ - 7.4
25
26
26
27
runs-on : ${{ matrix.os }}
27
28
steps :
28
- - name : Install PHP
29
- run : |
30
- git clone https://github.com/php/php-src.git /tmp/php-${{ matrix.php-version }}
31
- cd /tmp/php-${{ matrix.php-version }}
32
- git checkout ${{ matrix.php-version }}
33
- mkdir target
34
- ./buildconf --force
35
- ./configure --prefix=`pwd`/target --enable-debug
36
- make -j
37
- make install
29
+ - name : Setup PHP
30
+ uses : shivammathur/setup-php@v2
31
+ with :
32
+ php-version : ${{ matrix.php-version }}
33
+
38
34
- name : Checkout
39
35
uses : actions/checkout@v2
40
-
You can’t perform that action at this time.
0 commit comments