Skip to content

chore(deps): update shivammathur/setup-php digest to 81cd5ae #500

chore(deps): update shivammathur/setup-php digest to 81cd5ae

chore(deps): update shivammathur/setup-php digest to 81cd5ae #500

Workflow file for this run

name: PHP Conformance CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
# Declare default permissions as read only.
permissions: read-all
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [ '7.4','8.0','8.1','8.2' ]
name: PHP ${{ matrix.php-version }} Conformance Test
steps:
- name: Harden Runner
uses: step-security/harden-runner@1b05615854632b887b69ae1be8cbefe72d3ae423 # v2.6.0
with:
egress-policy: block
allowed-endpoints: >
api.github.com:443
github.com:443
objects.githubusercontent.com:443
packagist.org:443
proxy.golang.org:443
repo.packagist.org:443
storage.googleapis.com:443
- name: Checkout code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Setup PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@81cd5ae0920b34eef300e1775313071038a53429 # v2
with:
php-version: ${{ matrix.php-version }}
- name: Install Dependencies
uses: nick-invision/retry@39da88d5f7d15a96aed861dbabbe8b7443e3182a # v1.0.4
with:
timeout_minutes: 10
max_attempts: 3
command: composer install
- name: Setup Go
uses: actions/setup-go@bfdd3570ce990073878bf10f6b2d79082de49492 # v2.2.0
with:
go-version: '1.20'
- name: Run HTTP conformance tests
uses: GoogleCloudPlatform/functions-framework-conformance/action@72a4f36b10f1c6435ab1a86a9ea24bda464cc262 # v1.8.6
env:
FUNCTION_TARGET: 'httpFunc'
FUNCTION_SIGNATURE_TYPE: 'http'
FUNCTION_SOURCE: ${{ github.workspace }}/tests/conformance/index.php
with:
functionType: 'http'
useBuildpacks: false
cmd: "'php -S localhost:8080 router.php'"
- name: Run Declarative HTTP conformance tests
uses: GoogleCloudPlatform/functions-framework-conformance/action@72a4f36b10f1c6435ab1a86a9ea24bda464cc262 # v1.8.6
env:
FUNCTION_TARGET: 'declarativeHttpFunc'
FUNCTION_SOURCE: ${{ github.workspace }}/tests/conformance/index.php
with:
functionType: 'http'
useBuildpacks: false
cmd: "'php -S localhost:8080 router.php'"
- name: Run Declarative Typed conformance tests
uses: GoogleCloudPlatform/functions-framework-conformance/action@72a4f36b10f1c6435ab1a86a9ea24bda464cc262 # v1.8.6
env:
FUNCTION_TARGET: 'declarativeTypedFunc'
FUNCTION_SOURCE: ${{ github.workspace }}/tests/conformance/index.php
with:
functionType: 'http'
declarativeType: 'typed'
useBuildpacks: false
cmd: "'php -S localhost:8080 router.php'"
- name: Run CloudEvent conformance tests
uses: GoogleCloudPlatform/functions-framework-conformance/action@72a4f36b10f1c6435ab1a86a9ea24bda464cc262 # v1.8.6
env:
FUNCTION_TARGET: 'cloudEventFunc'
FUNCTION_SIGNATURE_TYPE: 'cloudevent'
FUNCTION_SOURCE: ${{ github.workspace }}/tests/conformance/index.php
with:
functionType: 'cloudevent'
useBuildpacks: false
validateMapping: true
cmd: "'php -S localhost:8080 router.php'"
- name: Run Declarative CloudEvent conformance tests
uses: GoogleCloudPlatform/functions-framework-conformance/action@72a4f36b10f1c6435ab1a86a9ea24bda464cc262 # v1.8.6
env:
FUNCTION_TARGET: 'declarativeCloudEventFunc'
FUNCTION_SOURCE: ${{ github.workspace }}/tests/conformance/index.php
with:
functionType: 'cloudevent'
useBuildpacks: false
validateMapping: true
cmd: "'php -S localhost:8080 router.php'"