Skip to content

Change Code Owners So Core Enablement can start reviewing the changes #13

Change Code Owners So Core Enablement can start reviewing the changes

Change Code Owners So Core Enablement can start reviewing the changes #13

Workflow file for this run

name: Validate
on:
workflow_call:
pull_request:
types: [ opened, reopened, synchronize ]
jobs:
check:
runs-on: ubuntu-latest
timeout-minutes: 10
env:
SHIPPO_TOKEN: ${{ env.DEV_MAIN_SPEAKEASY_API_KEY_SHIPPO_TOKEN }}

Check failure on line 13 in .github/workflows/sdk_validation.yaml

View workflow run for this annotation

GitHub Actions / Validate

Invalid workflow file

The workflow is not valid. .github/workflows/sdk_validation.yaml (Line: 13, Col: 21): Unrecognized named-value: 'env'. Located at position 1 within expression: env.DEV_MAIN_SPEAKEASY_API_KEY_SHIPPO_TOKEN
concurrency:
group: php-sdk-check
steps:
- name: "Authenticate with AWS"
uses: goshippo/shippo-action-workflows/.github/actions/[email protected]
with:
environment: dev-main
oidc-name: shippo-php-sdk-pipeline
login-to-ecr: false
- name: Get Speakeasy API Key
uses: aws-actions/aws-secretsmanager-get-secrets@v2
with:
secret-ids: |
dev-main-speakeasy-api-key
name-transformation: uppercase
parse-json-secrets: true
- name: Check out repository
uses: actions/checkout@v4
- name: Set up PHP
id: setup_php
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
- name: cache dependencies
uses: actions/cache@v4
with:
path: ./vendor
key: python-${{ steps.setup_python.outputs.python-version }}-${{ hashFiles('setup.py') }}
- name: Install dependencies
run: |
make install
- name: Check
run: make check