Skip to content

Add test workflow

Add test workflow #50

Workflow file for this run

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, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- 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: install vfox (Windows)
if: runner.os == 'Windows'
shell: pwsh
run: |
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression
scoop install vfox
vfox -v
- name: Checkout code
uses: actions/checkout@v3
- name: Generate PHP plugin
if: runner.os != 'Windows'
run: |
zip -r php.zip ./
- name: Generate PHP plugin
if: runner.os == 'Windows'
run: |
Compress-Archive -Path .\* -DestinationPath .\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]
# php -v
# php -m
# composer -V
- name: Test
if: runner.os != 'Windows'
run: |
vfox use [email protected]
php -v
php -m
composer -V
- name: Test
if: runner.os == 'Windows'
shell: pwsh
run: |
vfox use -p [email protected]
Invoke-Expression "$(vfox activate pwsh)"
php -v
php -m
composer -V