We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe93049 commit f0eab1dCopy full SHA for f0eab1d
2 files changed
.github/workflows/ci.yml
@@ -0,0 +1,32 @@
1
+name: CI
2
+on:
3
+ push:
4
+ branches:
5
+ - '*'
6
+ pull_request:
7
+ schedule:
8
+ - cron: 0 14 * * 0
9
+jobs:
10
+ ci:
11
+ name: PHP v${{ matrix.php }}
12
+ runs-on: ubuntu-latest
13
+ strategy:
14
+ fail-fast: false
15
+ matrix:
16
+ php: ['7.2', '7.3', '7.4']
17
+ steps:
18
+ - name: Set up PHP
19
+ uses: shivammathur/setup-php@master
20
+ with:
21
+ php-version: ${{ matrix.php }}
22
+ coverage: xdebug
23
+ - name: Check PHP version
24
+ run: php -v
25
+ - name: Checkout
26
+ uses: actions/checkout@v1
27
+ - name: Make
28
+ run: make ci
29
+ - name: Upload Coverage Reports
30
+ if: success()
31
+ run: |
32
+ [[ -z "${{ secrets.CODECOV_TOKEN }}" ]] || bash <(curl -s https://codecov.io/bash) -t "${{ secrets.CODECOV_TOKEN }}" -B "${{ github.ref }}"
.travis.yml
0 commit comments