Skip to content

Commit

Permalink
Many changes
Browse files Browse the repository at this point in the history
  • Loading branch information
MEhrn00 committed Feb 14, 2024
1 parent 65d3be3 commit 133cd10
Show file tree
Hide file tree
Showing 58 changed files with 2,313 additions and 1,955 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,14 @@ jobs:
run: sudo apt-get update -y && sudo apt-get install -y libdbus-1-dev

- name: Lint agent code
run: cargo clippy --color always --all-features --all-targets -- -D warnings
run: |
cargo build -p genconfig
cargo clippy --color always --all-features --all-targets -- -D warnings
- name: Check agent code formatting
run: cargo fmt --all -- --color always --check
run: |
cargo build -p genconfig
cargo fmt --all -- --color always --check
mythic:
name: Mythic Code
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ jobs:
run: sudo apt-get update -y && sudo apt-get install -y libdbus-1-dev

- name: Run tests
run: cargo test --color always --workspace --exclude genconfig --all-features
run: |
cargo build -p genconfig
cargo test --color always --workspace --exclude genconfig --all-features
mythic:
name: Mythic Tests
Expand Down
5 changes: 5 additions & 0 deletions Payload_Type/thanatos/.mythic.code-workspace
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
{
"folders": [
{
"name": "mythic",
"path": "mythic"
},
{
"name": "agent",
"path": "agent"
},
{
"path": "../../.github"
}
],
"settings": {
Expand Down
2 changes: 0 additions & 2 deletions Payload_Type/thanatos/agent/.env.sh

This file was deleted.

2 changes: 1 addition & 1 deletion Payload_Type/thanatos/agent/.gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
target
build.ps1
tags
.config
.config.json
.config.bin
Loading

0 comments on commit 133cd10

Please sign in to comment.