Files
asdf-php/.github/workflows/workflow.yml
Sora Morimoto 068420ef9f Update .github/workflows/workflow.yml
Signed-off-by: Sora Morimoto <sora@morimoto.io>
2020-12-15 14:59:38 +09:00

64 lines
1.5 KiB
YAML

name: Main workflow
on:
pull_request:
push:
schedule:
- cron: 0 0 * * 5
jobs:
plugin-test-docker:
strategy:
matrix:
container:
- ubuntu: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@v1
with:
command: php --version
version: 8.0.0
plugin-test-vm:
strategy:
matrix:
os:
- macos-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 pkg-config re2c zlib
- name: asdf_plugin_test
uses: asdf-vm/actions/plugin-test@v1
with:
command: php --version
version: 8.0.0
format:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install shfmt
run: brew install shfmt
- name: Run shfmt
run: shfmt -d -i 2 -ci .