From ec050926ede10be846d3add752bafb1841b9af6c Mon Sep 17 00:00:00 2001 From: Phani Kumar Mallampati Date: Thu, 20 Jun 2024 15:37:32 -0700 Subject: [PATCH] jenkins CI to GH actions --- .github/workflows/ci.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e71c2cb..0ecd1cc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,9 +11,6 @@ on: jobs: build: runs-on: ubuntu-latest - defaults: - run: - working-directory: . steps: - name: setup PHP uses: shivammathur/setup-php@v2 @@ -30,9 +27,13 @@ jobs: key: composer-v1-{{ checksum "composer.lock" }} restore-keys: | composer-v1- - - run: composer install --prefer-dist --no-progress + - run: | + cd /home/runner/work/sift-php/ + composer install --prefer-dist --no-progress - name: siftPhpTest - run: composer exec phpunit -v + run: | + cd /home/runner/work/sift-php/ + composer exec phpunit -v run-integration-tests-php74: runs-on: ubuntu-latest