Skip to content

Commit 2b10660

Browse files
authored
Test actions-rust-lang/rustfmt
1 parent d147122 commit 2b10660

File tree

3 files changed

+19
-51
lines changed

3 files changed

+19
-51
lines changed

.github/workflows/audit.yml

-29
This file was deleted.

.github/workflows/ci.yaml

-22
This file was deleted.

.github/workflows/fmt.yaml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: "Test Suite"
2+
on:
3+
push:
4+
pull_request:
5+
# Run manually
6+
workflow_dispatch:
7+
8+
jobs:
9+
formatting:
10+
name: cargo fmt
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
# Ensure rustfmt is installed and setup problem matcher
15+
- uses: actions-rust-lang/setup-rust-toolchain@v1
16+
with:
17+
components: rustfmt
18+
- name: Rustfmt Check
19+
uses: actions-rust-lang/rustfmt@v1

0 commit comments

Comments
 (0)