From 9ccc1552a95491119a7ce25f69822835c4672e60 Mon Sep 17 00:00:00 2001 From: AshrafOxid <145345202+ashrafoxid@users.noreply.github.com> Date: Tue, 14 Nov 2023 16:13:59 +0100 Subject: [PATCH] Create github actions --- .github/workflows/php.yml | 40 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/workflows/php.yml diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml new file mode 100644 index 0000000..b8a716b --- /dev/null +++ b/.github/workflows/php.yml @@ -0,0 +1,40 @@ +name: PHP Composer + +on: + push: + branches: [ "b-8.0.x-drop-smarty-template-OXDEV-7524" ] + +permissions: + contents: read + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Cache Composer packages + id: composer-cache + uses: actions/cache@v3 + with: + path: vendor + key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} + restore-keys: | + ${{ runner.os }}-php- + + - name: Install dependencies + run: composer install --prefer-dist --no-progress + + run_tests: + runs-on: ubuntu-latest + + needs: build + + steps: + - name: Debug vendor/bin contents + run: ls -l vendor/bin + + - name: Run tests + run: php vendor/bin/phpunit tests