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 b7b1eb8 commit 8836d2bCopy full SHA for 8836d2b
.github/workflows/php.yml
@@ -11,12 +11,16 @@ permissions:
11
12
jobs:
13
build:
14
-
15
runs-on: ubuntu-latest
16
17
steps:
18
- uses: actions/checkout@v3
19
+ - name: Set up PHP
20
+ uses: shivammathur/setup-php@v2
21
+ with:
22
+ php-version: '8.2'
23
+
24
- name: Cache Composer packages
25
id: composer-cache
26
uses: actions/cache@v3
@@ -39,4 +43,4 @@ jobs:
39
43
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
40
44
SIGNER_EMAIL: ${{ secrets.SIGNER_EMAIL }}
41
45
SIGNER_NAME: ${{ secrets.SIGNER_NAME }}
42
- run: composer run-script test
46
+ run: composer run-script test
0 commit comments