-
Notifications
You must be signed in to change notification settings - Fork 46
100 lines (79 loc) · 2.48 KB
/
lint.yml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
name: Lint and check code for errors
on:
push:
branches:
- main
- dev
- test/**
paths:
- Payload_Type/thanatos/agent/**
- Payload_Type/thanatos/mythic/**
pull_request:
branches:
- main
- dev
paths:
- Payload_Type/thanatos/agent/**
- Payload_Type/thanatos/mythic/**
workflow_call:
env:
AGENT_CODE: Payload_Type/thanatos/agent
MYTHIC_CODE: Payload_Type/thanatos/mythic
jobs:
syntax:
name: Check Syntax
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup environment
uses: ./.github/actions/setup-lint
with:
agent-code: ${{ env.AGENT_CODE }}
mythic-code: ${{ env.MYTHIC_CODE }}
- name: Check Mythic code for errors
working-directory: ${{ env.MYTHIC_CODE }}
run: gofmt -e **/**.go 1>/dev/null
- name: Check Agent code for errors
working-directory: ${{ env.AGENT_CODE }}
run: |
make genconfig
env SRC_CONFIG=$(pwd)/.config CONFIG=$(pwd)/.config.bin cargo check --color always --workspace --exclude genconfig --all-targets --all-features
format:
name: Check Formatting
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup environment
uses: ./.github/actions/setup-lint
with:
agent-code: ${{ env.AGENT_CODE }}
mythic-code: ${{ env.MYTHIC_CODE }}
- name: Check Mythic code formatting
working-directory: ${{ env.MYTHIC_CODE }}
run: gofmt -l -d **/**.go
- name: Check Agent code formatting
working-directory: ${{ env.AGENT_CODE }}
run: cargo fmt --all -- --color always --check
lint:
name: Lint Code
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup environment
uses: ./.github/actions/setup-lint
with:
agent-code: ${{ env.AGENT_CODE }}
mythic-code: ${{ env.MYTHIC_CODE }}
- name: Install Clippy
run: rustup component add clippy
- name: Lint Mythic code with golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
working-directory: ${{ env.MYTHIC_CODE }}
- name: Lint Agent code with clippy
working-directory: ${{ env.AGENT_CODE }}
run: cargo clippy --color always --all-features --all-targets -- -D warnings