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.
1 parent a5d8283 commit 9fb87d4Copy full SHA for 9fb87d4
.github/workflows/rust.yml
@@ -37,6 +37,19 @@ jobs:
37
- run: rustup component add rustfmt --toolchain nightly-x86_64-unknown-linux-gnu
38
- name: "Run formatting check"
39
run: cargo fmt --all -- --check
40
+
41
+ Format-FFI:
42
+ runs-on: ubuntu-latest
43
+ steps:
44
+ - name: "Checkout repo"
45
+ uses: actions/checkout@v4
46
+ - name: "Install nightly toolchain"
47
+ uses: dtolnay/rust-toolchain@nightly
48
+ - name: "Use cache"
49
+ uses: Swatinem/rust-cache@v2
50
+ - run: rustup component add rustfmt --toolchain nightly-x86_64-unknown-linux-gnu
51
+ - name: "Run formatting check"
52
+ run: cd payjoin-ffi && cargo fmt --all -- --check
53
54
Lint:
55
runs-on: ubuntu-latest
0 commit comments