Skip to content

Instantly share code, notes, and snippets.

@Rusydy
Created December 6, 2025 19:39
Show Gist options
  • Select an option

  • Save Rusydy/16142f7b33593b2e112184dae65f73db to your computer and use it in GitHub Desktop.

Select an option

Save Rusydy/16142f7b33593b2e112184dae65f73db to your computer and use it in GitHub Desktop.
original github flow asdf-php as of 24 October 2025
name: Main workflow
on:
pull_request:
push:
schedule:
- cron: 0 0 * * 5
jobs:
plugin-test-docker:
strategy:
matrix:
container:
- ubuntu:latest
php-version:
- 7.4.14
- 8.0.0
- latest
env:
DEBIAN_FRONTEND: noninteractive
container:
image: ${{ matrix.container }}
runs-on: ubuntu-latest
steps:
- name: Install packages
run: apt-get update && apt-get install -y autoconf bison build-essential curl gettext git libgd-dev libcurl4-openssl-dev libedit-dev libicu-dev libjpeg-dev libmysqlclient-dev libonig-dev libpng-dev libpq-dev libreadline-dev libsqlite3-dev libssl-dev libxml2-dev libzip-dev openssl pkg-config re2c zlib1g-dev
- name: asdf_plugin_test
uses: asdf-vm/actions/plugin-test@v4
with:
command: php --version
version: ${{ matrix.php-version }}
plugin-test-vm:
strategy:
matrix:
os:
- macos-latest
php-version:
- 7.4.14
- 8.0.0
- latest
runs-on: ${{ matrix.os }}
steps:
- name: Install packages
run: brew install autoconf automake bison freetype gd gettext icu4c krb5 libedit libiconv libjpeg libpng libxml2 libzip [email protected] pkg-config re2c zlib
- name: Install conflicting packages
run: brew install openssl@3
- name: asdf_plugin_test
uses: asdf-vm/actions/plugin-test@v4
with:
command: php --version
version: ${{ matrix.php-version }}
format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Install shfmt
run: brew install shfmt
- name: Run shfmt
run: make fmt-check
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment