We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eed4ef2 commit 31438a0Copy full SHA for 31438a0
1 file changed
.github/workflows/ci.yaml
@@ -0,0 +1,22 @@
1
+name: CI
2
+on:
3
+ pull_request: ~
4
+ push: ~
5
+jobs:
6
+ test:
7
+ name: PHP ${{ matrix.php-version }}
8
+ strategy:
9
+ fail-fast: false
10
+ matrix:
11
+ include:
12
+ - php-version: '7.4'
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v5
16
+
17
+ - uses: shivammathur/setup-php@v2
18
+ with:
19
+ php-version: ${{ matrix.php-version }}
20
+ extensions: none
21
22
+ - run: php --version
0 commit comments