Skip to content

Bump shivammathur/setup-php from 2.34.1 to 2.35.1 #25

Bump shivammathur/setup-php from 2.34.1 to 2.35.1

Bump shivammathur/setup-php from 2.34.1 to 2.35.1 #25

Workflow file for this run

name: CI
on: [push, pull_request, workflow_dispatch]
jobs:
run:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
# arch: ["armv6", "armv7", "aarch64", "amd64"]
php: ["8.0", "8.1", "8.2", "8.3", "8.4"]
type: ["ts", "nts"]
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup PHP
uses: shivammathur/setup-php@2282b6a082fc605c8320908a4cca3a5d1ca6c6fe # v2.35.1
with:
php-version: ${{ matrix.php }}
coverage: none
extensions: none
tools: none
env:
phpts: ${{ matrix.type }}
update: true
- name: Prepare for build
run: phpize && ./configure
- name: Build ext-uart
run: make
- name: Run test suite
run: make test
env:
NO_INTERACTION: 1