Skip to content

Commit

Permalink
test: add command
Browse files Browse the repository at this point in the history
  • Loading branch information
fukusuket committed Nov 15, 2024
1 parent c5f5a2a commit d7ff898
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ jobs:
- name: computer-metrics
run: cd main && cargo run --release -- computer-metrics -d ../hayabusa-sample-evtx -q

- name: computer-metrics(-o)
run: cd main && cargo run --release -- computer-metrics -d ../hayabusa-sample-evtx -q -o out.csv -C

- name: csv-timeline
run: cd main && cargo run --release -- csv-timeline -d ../hayabusa-sample-evtx -o out.csv -q -w -D -n -u

Expand All @@ -50,6 +53,9 @@ jobs:
- name: eid-metrics
run: cd main && cargo run --release -- eid-metrics -d ../hayabusa-sample-evtx -q

- name: eid-metrics(-o)
run: cd main && cargo run --release -- eid-metrics -d ../hayabusa-sample-evtx -q -o out.csv -C

- name: json-timeline
run: cd main && cargo run --release -- json-timeline -d ../hayabusa-sample-evtx -o out.json -q -w -D -n -u

Expand All @@ -68,13 +74,25 @@ jobs:
- name: list-profiles
run: cd main && cargo run --release -- list-profiles -q

- name: log-metrics
run: cd main && cargo run --release -- log-metrics -d ../hayabusa-sample-evtx -q

- name: log-metrics(-o)
run: cd main && cargo run --release -- log-metrics -d ../hayabusa-sample-evtx -q -o out.csv -C

- name: logon-summary
run: cd main && cargo run --release -- logon-summary -d ../hayabusa-sample-evtx -q

- name: logon-summary(-o)
run: cd main && cargo run --release -- logon-summary -d ../hayabusa-sample-evtx -q -o out.csv -C

- name: pivot-keywords-list
run: cd main && cargo run --release -- pivot-keywords-list -d ../hayabusa-sample-evtx -o key -q -w

- name: search
run: cd main && cargo run --release -- search -d ../hayabusa-sample-evtx -k mimikatz -q

- name: search(-o)
run: cd main && cargo run --release -- search -d ../hayabusa-sample-evtx -k mimikatz -o search.csv -q

- name: set-default-profile
Expand Down

0 comments on commit d7ff898

Please sign in to comment.