Skip to content

Commit

Permalink
edit workflow to not use actions
Browse files Browse the repository at this point in the history
Signed-off-by: Curtis Harding <curtis.harding@iohk.io>
  • Loading branch information
curtis-h committed May 3, 2024
1 parent f28f0d9 commit a5c15e7
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,20 +63,17 @@ jobs:
with:
xcode-version: '15.0.1'

- name: "Install rust toolchain"
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: "Install rust toolchain (Linux)"
if: matrix.os-type == 'linux'
run: sudo apt install rustc -y

- name: "Install rust toolchain (Macos)"
if: matrix.os-type == 'macos'
run: brew install rustup

- name: "Install wasm-pack"
uses: actions-rs/cargo@v1
with:
command: install
args: wasm-pack
run: cargo install wasm-pack


- name: "Test Kotlin code is properly formatted"
run: ./gradlew ktlintCheck

Expand Down

0 comments on commit a5c15e7

Please sign in to comment.