Attempt to fix docs adding --strict-escape to CLI help and main yara … #60
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Coverity | |
on: | |
push: | |
branches: [master] | |
jobs: | |
coverity: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y \ | |
autoconf \ | |
automake \ | |
gcc-multilib \ | |
libtool \ | |
libjansson-dev \ | |
libmagic-dev \ | |
libssl-dev | |
- name: Prepare for building | |
run: | | |
./bootstrap.sh | |
./configure | |
- uses: vapier/coverity-scan-action@v1 | |
with: | |
project: 'plusvic/yara' | |
email: ${{ secrets.COVERITY_SCAN_EMAIL }} | |
token: ${{ secrets.COVERITY_SCAN_TOKEN }} |