Skip to content

Feat: 포인트 할인값 데이터 추가 #437

Feat: 포인트 할인값 데이터 추가

Feat: 포인트 할인값 데이터 추가 #437

Workflow file for this run

name: PHP Lint
on: [push, pull_request, workflow_dispatch]
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [ '7.4', '8.0' , '8.1', '8.2' ]
name: PHP ${{ matrix.php }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: PHP Lint
run: if find . -name "*.php" ! -path "./vendor/*" -print0 | xargs -0 -n 1 -P 8 php -l | grep -v "No syntax errors detected"; then exit 1; fi