File tree Expand file tree Collapse file tree 3 files changed +30
-24
lines changed Expand file tree Collapse file tree 3 files changed +30
-24
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on :
3
+ pull_request :
4
+ push :
5
+ branches :
6
+ - master
7
+ jobs :
8
+ tests :
9
+ runs-on : ubuntu-latest
10
+ strategy :
11
+ fail-fast : false
12
+ matrix :
13
+ php : ['7.3', '7.4']
14
+
15
+ name : PHP ${{ matrix.php }} tests
16
+
17
+ steps :
18
+ - uses : actions/checkout@v2
19
+
20
+ - uses : shivammathur/setup-php@v2
21
+ with :
22
+ php-version : ${{ matrix.php }}
23
+ coverage : none
24
+
25
+ - uses : " ramsey/composer-install@v1"
26
+ with :
27
+ composer-options : " --prefer-source"
28
+
29
+ - run : vendor/bin/phpunit --exclude-group=functional
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ Enqueue is an MIT-licensed open source project with its ongoing development made
10
10
# Symfony Async Command.
11
11
12
12
[ ![ Gitter] ( https://badges.gitter.im/php-enqueue/Lobby.svg )] ( https://gitter.im/php-enqueue/Lobby )
13
- [ ![ Build Status] ( https://travis-ci.org/ php-enqueue/async-command.png?branch=master )] ( https://travis-ci.org /php-enqueue/async-command )
13
+ [ ![ Build Status] ( https://img.shields.io/github/workflow/status/ php-enqueue/async-command/CI )] ( https://github.com /php-enqueue/async-command/actions?query=workflow%3ACI )
14
14
[ ![ Total Downloads] ( https://poser.pugx.org/enqueue/async-command/d/total.png )] ( https://packagist.org/packages/enqueue/async-command )
15
15
[ ![ Latest Stable Version] ( https://poser.pugx.org/enqueue/async-command/version.png )] ( https://packagist.org/packages/enqueue/async-command )
16
16
You can’t perform that action at this time.
0 commit comments