Added blog post: "Memory Analysis with Velociraptor - Part 2" #2466
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: Spellcheck Action | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| build: | |
| name: Spellcheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| # The checkout step | |
| - uses: actions/checkout@master | |
| - name: Download Latest Velociraptor | |
| uses: robinraju/release-downloader@v1 | |
| id: velociraptor | |
| with: | |
| repository: velocidex/velociraptor | |
| tag: v0.74 | |
| fileName: "velociraptor-v0.74.3-linux-amd64-musl" | |
| out-file-path: tests | |
| - name: Verify Exchange Artifacts | |
| run: | | |
| mv ${{ fromJson(steps.velociraptor.outputs.downloaded_files)[0]}} ./tests/velociraptor | |
| chmod +x ./tests/velociraptor | |
| ./tests/velociraptor -v artifacts verify ./content/exchange/artifacts/*.yaml | |
| - uses: rojopolis/[email protected] | |
| name: Spellcheck | |
| with: | |
| config_path: .pyspelling.yml |