Skip to content

fix: workflow support all errors #6

fix: workflow support all errors

fix: workflow support all errors #6

Workflow file for this run

name: Validate
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: sudo apt-get install -y yara
- run: find . -type f -iname "*.yara" -exec yara -w {} /dev/null \; 2>&1 | tee /dev/stderr | grep -q 'error' && exit 1