Skip to content

Commit 199f0a1

Browse files
committed
Turn off fmt and clippy workflows for now
Signed-off-by: Sandro-Alessio Gierens <sandro@gierens.de>
1 parent 56f7310 commit 199f0a1

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

.github/workflows/general.yml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -16,28 +16,28 @@ jobs:
1616
- name: Run tests
1717
run: cargo test
1818

19-
fmt:
20-
name: Rustfmt
21-
runs-on: ubuntu-latest
22-
steps:
23-
- uses: actions/checkout@v3
24-
- uses: dtolnay/rust-toolchain@stable
25-
with:
26-
components: rustfmt
27-
- name: Enforce formatting
28-
run: cargo fmt --check
19+
# fmt:
20+
# name: Rustfmt
21+
# runs-on: ubuntu-latest
22+
# steps:
23+
# - uses: actions/checkout@v3
24+
# - uses: dtolnay/rust-toolchain@stable
25+
# with:
26+
# components: rustfmt
27+
# - name: Enforce formatting
28+
# run: cargo fmt --check
2929

30-
clippy:
31-
name: Clippy
32-
runs-on: ubuntu-latest
33-
steps:
34-
- uses: actions/checkout@v3
35-
- uses: dtolnay/rust-toolchain@stable
36-
with:
37-
components: clippy
38-
- uses: Swatinem/rust-cache@v2
39-
- name: Linting
40-
run: cargo clippy -- -D warnings
30+
# clippy:
31+
# name: Clippy
32+
# runs-on: ubuntu-latest
33+
# steps:
34+
# - uses: actions/checkout@v3
35+
# - uses: dtolnay/rust-toolchain@stable
36+
# with:
37+
# components: clippy
38+
# - uses: Swatinem/rust-cache@v2
39+
# - name: Linting
40+
# run: cargo clippy -- -D warnings
4141

4242
coverage:
4343
name: Code coverage

0 commit comments

Comments
 (0)