Fixed missing comma in JSON output when flushing during recursive scan #19
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build-test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies (Linux) | |
| if: runner.os == 'Linux' | |
| run: sudo apt-get update && sudo apt-get install -y cmake g++ git libssl-dev libboost-system-dev libboost-test-dev | |
| - name: Configure (Linux) | |
| if: runner.os == 'Linux' | |
| run: cmake . -DTests=ON -DCMAKE_BUILD_TYPE=Release | |
| - name: Build (Linux) | |
| if: runner.os == 'Linux' | |
| run: cmake --build . -- -j2 | |
| - name: Verify VirusTotal plugin built (Linux) | |
| if: runner.os == 'Linux' | |
| run: test -f bin/libplugin_virustotal.so | |
| - name: Run tests (Linux) | |
| if: runner.os == 'Linux' | |
| run: ./bin/manalyze-tests |