Skip to content

Investigate triggering tests on automated PR #73

Investigate triggering tests on automated PR

Investigate triggering tests on automated PR #73

Workflow file for this run

name: Validate
permissions:
contents: write
id-token: write
on:
pull_request:
branches:
- main
types:
- opened
- reopened
- synchronize
jobs:
check:
runs-on: ubuntu-latest
timeout-minutes: 10
concurrency:
group: php-sdk-check-${{ github.event.pull_request.number }}
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up PHP
id: setup_php
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
- 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
env:
SHIPPO_TOKEN: ${{ secrets.SHIPPO_TOKEN }}