1
0
mirror of https://github.com/tw93/Mole.git synced 2026-02-04 14:26:46 +00:00

The analysis module has been refactored using Go.

This commit is contained in:
Tw93
2025-11-12 17:09:04 +08:00
parent 96f3c9bd1f
commit 479d09246d
9 changed files with 1415 additions and 2411 deletions

View File

@@ -13,6 +13,11 @@ jobs:
- name: Checkout source code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22.6'
- name: Install shell linting and testing tools
run: brew install bats-core shfmt shellcheck
@@ -21,3 +26,6 @@ jobs:
- name: Run shellcheck linter and bats tests
run: ./scripts/check.sh
- name: Build Go disk analyzer
run: mkdir -p bin && go build -o bin/analyze-go ./cmd/analyze