FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
web-eid-authtoken-validation-php/.github/workflows/php.yml at main · web-eid/web-eid-authtoken-validation-php · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
web-eid
/
web-eid-authtoken-validation-php
Public
Notifications
You must be signed in to change notification settings
Fork
10
Star
10
Code
Issues
1
Pull requests
8
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
web-eid-authtoken-validation-php
/
.github
/
workflows
/
php.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
44 lines (33 loc) · 940 Bytes
Breadcrumbs
web-eid-authtoken-validation-php
/
.github
/
workflows
/
php.yml
Copy path
File metadata and controls
44 lines (33 loc) · 940 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name
:
PHP Composer
on
:
push
:
branches
:
[ "main" ]
pull_request
:
branches
:
[ "main" ]
permissions
:
contents
:
read
jobs
:
test
:
runs-on
:
ubuntu-latest
strategy
:
matrix
:
php-version
:
[ '8.1', '8.2', '8.3', '8.4', '8.5' ]
steps
:
-
uses
:
actions/checkout@v6
-
uses
:
shivammathur/setup-php@v2
with
:
php-version
:
${{ matrix.php-version }}
-
name
:
Validate composer.json and composer.lock
run
:
composer validate --strict
-
name
:
Cache Composer packages
id
:
composer-cache
uses
:
actions/cache@v5
with
:
path
:
vendor
key
:
${{ runner.os }}-php-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }}
restore-keys
:
|
${{ runner.os }}-php-${{ matrix.php-version }}-
-
name
:
Install dependencies
run
:
composer install --prefer-dist --no-progress
-
name
:
Run test suite
run
:
composer test
Back
|
FazBrowse Home
|
New Git URL