We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22adc08 commit faf5076Copy full SHA for faf5076
.cirrus.yml
.github/workflows/ci.yml
@@ -76,3 +76,28 @@ jobs:
76
77
- name: Save caches
78
uses: bitcoin/bitcoin/.github/actions/save-caches@master
79
+
80
+ lint:
81
+ name: lint
82
+ runs-on: ubuntu-slim
83
84
+ steps:
85
+ - name: Checkout
86
+ uses: actions/checkout@v6
87
+ with:
88
+ fetch-depth: 2
89
90
+ - name: Install Cargo
91
+ run: |
92
+ sudo apt-get update
93
+ sudo apt-get install -y cargo
94
95
+ - name: Build touched-files-check
96
+ working-directory: contrib/touched-files-check
97
+ run: cargo build
98
99
+ - name: Fuzz inputs size
100
+ run: du -sh ./fuzz_corpora/
101
102
+ - name: Lint
103
+ run: ./contrib/touched-files-check/target/debug/touched-files-check "HEAD~..HEAD"
0 commit comments