Change Code Owners So Core Enablement can start reviewing the changes #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 GitHub Actions / ValidateInvalid workflow file
|
||
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 |