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 63b92dd commit f633ac5Copy full SHA for f633ac5
.github/workflows/pull-request.yml
@@ -63,20 +63,17 @@ jobs:
63
with:
64
xcode-version: '15.0.1'
65
66
- - name: "Install rust toolchain"
67
- uses: actions-rs/toolchain@v1
68
- with:
69
- profile: minimal
70
- toolchain: stable
71
- override: true
+ - name: "Install rust toolchain (Linux)"
+ if: matrix.os-type == 'linux'
+ run: apt install rustc -y
+
+ - name: "Install rust toolchain (Macos)"
+ if: matrix.os-type == 'macos'
72
+ run: brew install rustup
73
74
- name: "Install wasm-pack"
- uses: actions-rs/cargo@v1
75
76
- command: install
77
- args: wasm-pack
+ run: cargo install wasm-pack
78
79
-
80
- name: "Test Kotlin code is properly formatted"
81
run: ./gradlew ktlintCheck
82
0 commit comments