mirror of
https://github.com/symfony/recipes.git
synced 2026-09-12 23:56:25 +03:00
27 lines
415 B
YAML
27 lines
415 B
YAML
name: Q&A
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
jobs:
|
|
|
|
tests:
|
|
name: Checks
|
|
runs-on: Ubuntu-20.04
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: No symlinks
|
|
run: |
|
|
SYMLINKS=$(find -type l)
|
|
if [[ "" != "$SYMLINKS" ]]; then
|
|
echo "::error::Symlinks are not allowed"
|
|
echo "Found $SYMLINKS"
|
|
fi
|