Skip to content

Commit

Permalink
f2
Browse files Browse the repository at this point in the history
  • Loading branch information
rhonalindiefolks committed Dec 30, 2024
1 parent e528292 commit c730c87
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,11 @@ concurrency:
cancel-in-progress: true

jobs:
build:
lint:
runs-on: ubuntu-20.04
strategy:
matrix:
php-version: [8.4]

steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -29,8 +28,27 @@ jobs:
- name: Install Composer dependencies
run: composer install --prefer-dist --no-progress --no-suggest --optimize-autoloader

- name: Php Pest
- name: Php lint
run: composer lint-ci

build:
runs-on: ubuntu-20.04
strategy:
matrix:
php-version: [8.4]

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: mbstring, intl, pdo_mysql

- name: Install Composer dependencies
run: composer install --prefer-dist --no-progress --no-suggest --optimize-autoloader

- name: Php Pest
run: composer test-ci

0 comments on commit c730c87

Please sign in to comment.