We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5c38490 + 9566c15 commit 0f4111aCopy full SHA for 0f4111a
.github/workflows/ci.yml
@@ -41,8 +41,13 @@ jobs:
41
run: cargo fmt --all -- --check
42
43
- name: Build and install cargo-binutils
44
+ if: matrix.rust == 'stable'
45
run: cargo install --path . -f
46
47
+ - name: Build and install cargo-binutils (--locked)
48
+ if: matrix.rust != 'stable'
49
+ run: cargo install --locked --path . -f
50
+
51
- name: Run cargo-nm
52
run: cargo nm --bin cargo-nm -- --undefined-only
53
.gitignore
@@ -1,4 +1,3 @@
1
**/*.rs.bk
2
.#*
3
/target
4
-Cargo.lock
0 commit comments