Skip to content

jenkins CI to GH actions #7

jenkins CI to GH actions

jenkins CI to GH actions #7

Workflow file for this run

name: PHP Composer
on:
push:
branches:
- "*"
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.1.27'
- name: Validate composer.json and composer.lock
working-directory: ./sift-php
run: |
composer validate --strict
- name: Cache Composer packages
id: composer-cache
working-directory: ./sift-php
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: siftPhpTest
working-directory: ./sift-php
run: composer exec phpunit -v
run-integration-tests-php74:
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/master' }}
steps:
- uses: actions/checkout@v4
- name: Validate composer.json and composer.lock
run: composer install --prefer-dist --no-progress