Skip to content

[자동차 경주] 김성규 과제 제출합니다. #64

[자동차 경주] 김성규 과제 제출합니다.

[자동차 경주] 김성규 과제 제출합니다. #64

name: Check No Ternary Operator
on: pull_request
jobs:
check-no-ternary:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Ensure ternary operators are not used
run: |
if grep -r 'if .* else' src/; then
echo "❌ Ternary operators are not allowed!"
exit 1
fi