-
-
Notifications
You must be signed in to change notification settings - Fork 102
74 lines (58 loc) · 1.75 KB
/
workflow.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
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@v1
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@v1
with:
command: php --version
version: ${{ matrix.php-version }}
format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install shfmt
run: brew install shfmt
- name: Run shfmt
run: make fmt-check