mirror of
https://github.com/serai-dex/serai.git
synced 2024-10-31 17:37:38 +00:00
19 lines
441 B
YAML
19 lines
441 B
YAML
name: build-dependencies
|
|
description: Installs build dependencies for Serai
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Install solc
|
|
shell: bash
|
|
run: |
|
|
pip3 install solc-select
|
|
solc-select install 0.8.9
|
|
solc-select use 0.8.9
|
|
|
|
- name: Install WASM toolchain
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: nightly
|
|
profile: minimal
|
|
target: wasm32-unknown-unknown
|