mirror of
https://github.com/Xahau/xahaud.git
synced 2025-11-04 10:45:50 +00:00
21 lines
516 B
YAML
21 lines
516 B
YAML
name: checkpatterns
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
checkpatterns:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Check for suspicious patterns
|
|
run: |
|
|
if [ -f "suspicious_patterns.sh" ]; then
|
|
bash suspicious_patterns.sh
|
|
else
|
|
echo "Warning: suspicious_patterns.sh not found, skipping check"
|
|
# Still exit with success for compatibility with dependent jobs
|
|
exit 0
|
|
fi
|