forked from Velocidex/velociraptor-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (30 loc) · 922 Bytes
/
spellchecker.yml
File metadata and controls
34 lines (30 loc) · 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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.76
fileName: "velociraptor-v0.76.1-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/spellcheck-github-actions@0.35.0
name: Spellcheck
with:
config_path: .pyspelling.yml