Skip to content

Commit 78a2976

Browse files
ci: Simplify GitHub Actions workflow and add README badges (#2)
Co-authored-by: Don Johnson <[email protected]>
1 parent 7291d90 commit 78a2976

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ jobs:
1313

1414
steps:
1515
- uses: actions/checkout@v3
16-
with:
17-
fetch-depth: 0
1816

1917
- name: Install Rust stable
2018
uses: actions-rs/toolchain@v1
@@ -38,9 +36,6 @@ jobs:
3836
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
3937
restore-keys: ${{ runner.os }}-cargo-
4038

41-
# Run tests
39+
# Run tests without treating warnings as errors
4240
- name: Run tests
43-
uses: actions-rs/cargo@v1
44-
with:
45-
command: test
46-
args: --verbose
41+
run: RUSTFLAGS="-A warnings" cargo test --all

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
# FATT (Find All The Things)
44

5+
[![Rust Tests](https://github.com/copyleftdev/fatt/actions/workflows/test.yml/badge.svg)](https://github.com/copyleftdev/fatt/actions/workflows/test.yml)
6+
[![License: HFPL](https://img.shields.io/badge/License-HFPL-blue.svg)](LICENSE)
7+
[![Rust Version](https://img.shields.io/badge/rust-1.70%2B-orange.svg)](https://www.rust-lang.org/)
8+
[![GitHub issues](https://img.shields.io/github/issues/copyleftdev/fatt)](https://github.com/copyleftdev/fatt/issues)
9+
[![GitHub stars](https://img.shields.io/github/stars/copyleftdev/fatt)](https://github.com/copyleftdev/fatt/stargazers)
10+
511
A high-performance, modular, asynchronous, and distributed security scanning CLI tool designed to rapidly identify sensitive or exposed files and directories across millions of domains.
612

713
## Features

0 commit comments

Comments
 (0)