-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: added bench for nesting * fix: nitpicks * fix: remove unused deps * test(market): compilator version has been changed * use toolchain version from .env fir codestyle wf * fix: fmt * chore: update `proc-macro2` dep Updated from 1.0.59 to 1.0.63 * Fix solidity version --------- Co-authored-by: Konstantin Astakhov <[email protected]> Co-authored-by: Andy Smith <[email protected]>
- Loading branch information
1 parent
83605d4
commit 28d97ca
Showing
16 changed files
with
998 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,9 +16,12 @@ jobs: | |
- uses: actions/[email protected] | ||
with: | ||
ref: ${{ github.head_ref }} | ||
- name: Install latest nightly | ||
uses: dtolnay/rust-toolchain@nightly | ||
- name: Read .env file | ||
uses: xom9ikk/dotenv@v2 | ||
- name: Install toolchain version from .env | ||
uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: ${{ env.RUST_TOOLCHAIN }} | ||
targets: wasm32-unknown-unknown | ||
components: rustfmt, clippy | ||
- name: Run cargo fmt | ||
|
@@ -50,9 +53,12 @@ jobs: | |
- uses: actions/[email protected] | ||
- name: Install substrate dependencies | ||
run: sudo apt install -y libssl-dev pkg-config libclang-dev clang protobuf-compiler | ||
- name: Install latest nightly | ||
uses: dtolnay/rust-toolchain@nightly | ||
- name: Read .env file | ||
uses: xom9ikk/dotenv@v2 | ||
- name: Install toolchain version from .env | ||
uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: ${{ env.RUST_TOOLCHAIN }} | ||
targets: wasm32-unknown-unknown | ||
components: rustfmt, clippy | ||
- name: Run cargo check | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,14 @@ | ||
{ | ||
"eslint.format.enable": true, | ||
"[javascript]": { | ||
"editor.defaultFormatter": "dbaeumer.vscode-eslint" | ||
}, | ||
"[typescript]": { | ||
"editor.defaultFormatter": "dbaeumer.vscode-eslint" | ||
}, | ||
"rust-analyzer.cargo.extraEnv": { | ||
"SKIP_WASM_BUILD": "1" | ||
}, | ||
"rust-analyzer.cargo.features": [ | ||
"runtime-benchmarks", | ||
"try-runtime" | ||
] | ||
} | ||
"eslint.format.enable": true, | ||
"[javascript]": { | ||
"editor.defaultFormatter": "dbaeumer.vscode-eslint" | ||
}, | ||
"[typescript]": { | ||
"editor.defaultFormatter": "dbaeumer.vscode-eslint" | ||
}, | ||
"rust-analyzer.cargo.extraEnv": { | ||
"SKIP_WASM_BUILD": "1" | ||
}, | ||
"rust-analyzer.cargo.features": ["runtime-benchmarks", "try-runtime"], | ||
"solidity.packageDefaultDependenciesDirectory": "tests/node_modules" | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.