We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02807e7 commit 53a4f3fCopy full SHA for 53a4f3f
1 file changed
.github/actions/setup-rbmt/action.yml
@@ -0,0 +1,18 @@
1
+name: Setup RBMT
2
+description: Install cargo-rbmt and pinned Rust toolchains.
3
+
4
+runs:
5
+ using: "composite"
6
+ steps:
7
+ - name: Install cargo-rbmt
8
+ shell: bash
9
+ run: |
10
+ cargo install \
11
+ --git https://github.com/rust-bitcoin/rust-bitcoin-maintainer-tools \
12
+ --rev "$(cat "${GITHUB_WORKSPACE}/rbmt-version")" \
13
+ cargo-rbmt \
14
+ --locked
15
16
+ - name: Install Rust toolchains
17
18
+ run: cargo rbmt toolchains
0 commit comments