We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d45986 commit 039c4f0Copy full SHA for 039c4f0
1 file changed
.github/ci.yml
@@ -0,0 +1,22 @@
1
+name: Package CI
2
+
3
+on:
4
+ pull_request:
5
6
+jobs:
7
+ checks:
8
+ name: Checks
9
+ runs-on: ubuntu-latest
10
+ strategy:
11
+ matrix:
12
+ php: [ 7.4 ]
13
+ version: [ lowest, standard ]
14
15
+ steps:
16
+ - uses: actions/checkout@v2
17
+ - uses: shivammathur/setup-php@v2
18
+ with:
19
+ php-version: ${{ matrix.php }}
20
21
+ - name: Run a one-line script
22
+ run: echo Hello, world!
0 commit comments