Skip to content

Commit

Permalink
jenkins CI to GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
pmallampati-sift committed Jun 20, 2024
1 parent 7d3df78 commit dbf3854
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,17 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: '7.1.27'
- name: Validate composer.json and composer.lock
run: |
sudo composer self-update
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
key: composer-v1-{{ checksum "composer.lock" }}
restore-keys: |
${{ runner.os }}-php-
composer-v1-
- run: composer install --prefer-dist --no-progress
- name: siftPhpTest
run: composer exec phpunit -v
Expand Down

0 comments on commit dbf3854

Please sign in to comment.