File tree 2 files changed +31
-0
lines changed 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : RTLCSS for PHP CI
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ test :
7
+ runs-on : ubuntu-18.04
8
+
9
+ strategy :
10
+ fail-fast : false
11
+ matrix :
12
+ php : ['7.3', '7.4', '8.0']
13
+
14
+ steps :
15
+ - name : Check out repository code
16
+ uses : actions/checkout@v2
17
+
18
+ - name : Setup PHP ${{ matrix.php }}
19
+ uses : shivammathur/setup-php@v2
20
+ with :
21
+ php-version : ${{ matrix.php }}
22
+ coverage : none
23
+
24
+ - name : Run composer
25
+ uses : php-actions/composer@v6
26
+
27
+ - name : PHPUnit tests
28
+ run :
29
+ vendor/bin/phpunit
Original file line number Diff line number Diff line change 1
1
RTLCSS for PHP
2
2
--------------
3
3
4
+ [ ![ Codechecker CI] ( https://github.com/moodlehq/rtlcss-php/actions/workflows/ci.yml/badge.svg )] ( https://github.com/moodlehq/rtlcss-php/actions/workflows/ci.yml )
5
+
4
6
RTLCSS is a framework for converting Left-To-Right (LTR) Cascading Style Sheets(CSS) to Right-To-Left (RTL).
5
7
6
8
## Usage
You can’t perform that action at this time.
0 commit comments