-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
2 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 |
---|---|---|
|
@@ -18,6 +18,8 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- name: Install protobuf | ||
run: sudo apt-get install protobuf-compiler | ||
- name: Install nightly toolchain | ||
run: sudo rustup toolchain install nightly-2023-04-01 | ||
- name: fmt check | ||
run: cargo +nightly-2023-12-01 fmt --all --check | ||
|
||
|
@@ -28,6 +30,8 @@ jobs: | |
uses: mozilla-actions/[email protected] | ||
- name: Install protobuf | ||
run: sudo apt-get install protobuf-compiler | ||
- name: Install nightly toolchain | ||
run: sudo rustup toolchain install nightly-2023-04-01 | ||
- uses: actions/checkout@v4 | ||
- name: Build | ||
run: cargo build --release --verbose | ||
|
@@ -39,7 +43,9 @@ jobs: | |
uses: mozilla-actions/[email protected] | ||
- name: Install protobuf | ||
run: sudo apt-get install protobuf-compiler | ||
- uses: actions/checkout@v3 | ||
- name: Install nightly toolchain | ||
run: sudo rustup toolchain install nightly-2023-04-01 | ||
- uses: actions/checkout@v4 | ||
- name: Run Pallet Tests | ||
run: cargo test --features runtime-benchmarks --verbose | ||
|
||
|
@@ -50,7 +56,9 @@ jobs: | |
uses: mozilla-actions/[email protected] | ||
- name: Install protobuf | ||
run: sudo apt-get install protobuf-compiler | ||
- uses: actions/checkout@v3 | ||
- name: Install nightly toolchain | ||
run: sudo rustup toolchain install nightly-2023-04-01 | ||
- uses: actions/checkout@v4 | ||
- name: STD Build | ||
run: cargo build --release --features std,instant-node | ||
- name: Run Integration Tests | ||
|