Add test workflow #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test workflow | |
on: | |
pull_request: | |
# push: | |
schedule: | |
- cron: 0 0 * * 5 | |
jobs: | |
plugin-test-linux: | |
strategy: | |
matrix: | |
# ref: https://github.com/actions/runner-images | |
os: [ ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: install vfox (Linux) | |
if: runner.os == 'Linux' | |
run: | | |
echo "deb [trusted=yes] https://apt.fury.io/versionfox/ /" | sudo tee /etc/apt/sources.list.d/versionfox.list | |
sudo apt-get update | |
sudo apt-get install vfox | |
echo 'eval "$(vfox activate bash)"' >> ~/.bashrc | |
- name: install vfox (MacOS) | |
if: runner.os == 'MacOS' | |
run: | | |
brew tap version-fox/tap | |
brew install vfox | |
echo 'eval "$(vfox activate bash)"' >> ~/.bashrc | |
echo 'eval "$(vfox activate zsh)"' >> ~/.zshrc | |
- name: Generate PHP plugin | |
run: | | |
zip -r php.zip ./ | |
- name: Install packages | |
if: runner.os == 'Linux' | |
run: sudo apt-get update && sudo 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: Install packages | |
if: runner.os == 'MacOS' | |
run: brew install autoconf automake bison freetype gd gettext icu4c krb5 libedit libiconv libjpeg libpng libxml2 libzip pkg-config re2c zlib | |
- name: Add PHP And Install Runtime | |
run: | | |
vfox add -s php.zip | |
vfox install [email protected] | |
- name: Test | |
run: | | |
vfox use [email protected] | |
php -v | |
php -m | |
composer -V | |