Skip to content

Commit 5f75f78

Browse files
committed
ci: _
1 parent d1f340c commit 5f75f78

File tree

5 files changed

+47
-31
lines changed

5 files changed

+47
-31
lines changed

.github/workflows/warnings.yml

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -80,26 +80,6 @@ jobs:
8080
\ $exit_code != 0 ]; then\n\t\t\t\t\techo \"Derives are not sorted. Run \\\
8181
`cargo sort-derives\\` to fix it.\"\n\t\t\t\t\texit $exit_code\n\t\t\t\tfi\n\
8282
\t\t\t"
83-
rust-unused-features:
84-
name: Unused Features
85-
runs-on: ubuntu-latest
86-
steps:
87-
- uses: actions/checkout@v4
88-
- name: Installation
89-
uses: taiki-e/install-action@v2
90-
with:
91-
tool: cargo-unused-features
92-
- name: Analyze Unused Features
93-
run: 'unused-features analyze
94-
95-
'
96-
- name: Build Report
97-
run: 'unused-features build-report --output report.json
98-
99-
'
100-
- name: Check for Unused Features
101-
run: "if [ -f report.json ] && [ \"$(cat report.json)\" != \"[]\" ]; then\n\
102-
\ echo \"Found unused features:\"\n cat report.json\n exit 1\nfi\n"
10383
tokei:
10484
name: Reasonable Amount of Comments
10585
runs-on: ubuntu-latest

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
## Personal
1111
**/_*
12+
!**/__scripts/
1213
.local.sh
1314
[push]
1415
**/TODO.md

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/nix/store/m987rcwz2wl8dv8nrj1bapagvxql7vc3-pre-commit-config.json
1+
/nix/store/fbp2hv9z31x1x1cgvsq3jg5j84fsq879-pre-commit-config.json

flake.lock

Lines changed: 44 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,9 @@
2323
stdenv = pkgs.stdenvAdapters.useMoldLinker pkgs.stdenv;
2424

2525
rs = v-utils.rs {
26-
inherit pkgs;
26+
inherit pkgs rust;
2727
cranelift = false; # cranelift disabled due to aws-lc-rs incompatibility
2828
tracey = true;
29-
nuke_snaps = true;
3029
build = {
3130
enable = true;
3231
workspace = {

0 commit comments

Comments
 (0)