Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Magnet release 0.7.0 #98

Merged
merged 25 commits into from
Jun 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
daca5d1
Feat:Add comments about order pallet
sulijia May 14, 2024
ca6d992
Fix:cargo fmt error
sulijia May 14, 2024
2ca2fc4
Add comments about order for node
sulijia May 15, 2024
384e607
Add comments about order for primitives
sulijia May 15, 2024
2006d4f
Merge pull request #77 from sulijia/Main-optimism-version
Acaishiba May 16, 2024
ab41e92
feat: Move pallet included
toints May 23, 2024
197214a
update: update workflow for magnet-stack
toints May 23, 2024
7b120c7
update: install smove tool
toints May 23, 2024
814458f
Fixed: add move build file and fixed run mock failed
toints May 24, 2024
2f8d900
Merge pull request #80 from toints/Magnet-Stack
Acaishiba May 28, 2024
30a6ddc
Merge branch 'Magport:main' into Magnet-Stack
toints May 28, 2024
ec6aae3
Merge pull request #82 from toints/Magnet-Stack
toints May 28, 2024
d6362e0
fixed: Fixed moveModule.execute 1010: Invalid Transaction: Transactio…
toints Jun 3, 2024
a916709
Merge pull request #83 from toints/Magnet-Stack
toints Jun 3, 2024
e12278e
Merge pull request #85 from Magport/Main-optimism-version
sulijia Jun 4, 2024
3f9e373
Feat:Upgrade Parachain for Asynchronous Backing Compatibility
sulijia Jun 4, 2024
878a3e5
Feat:Restore order spawn task
sulijia Jun 5, 2024
2bc148a
Feat:Activate Async Backing
sulijia Jun 6, 2024
2265f0a
refactor: Integration pallet-move use the GitHub repo instead of loca…
toints Jun 12, 2024
b7e1738
Merge pull request #89 from toints/Magnet-Stack
toints Jun 12, 2024
8aa1eed
Merge pull request #84 from Magport/Magnet-Stack-toints
Acaishiba Jun 17, 2024
d73a856
Merge branch 'main-develop' into Stack-Coretime
sulijia Jun 20, 2024
f3a63be
Merge pull request #87 from Magport/Stack-Coretime
Acaishiba Jun 23, 2024
c6ae962
Update rust.yml
zachary0809 Jun 26, 2024
9d9aff6
Merge pull request #96 from zachary0809/main-develop
Acaishiba Jun 26, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 21 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ name: Rust

on:
push:
branches:
- '**'
branches:
- 'main'
- 'main-develop'
pull_request:
branches:
- '**'
branches:
- 'main'
- 'main-develop'

env:
CARGO_TERM_COLOR: always
Expand Down Expand Up @@ -34,13 +36,16 @@ jobs:
override: true
components: rustfmt, clippy

- name: Install smove
run: cargo install --git https://github.com/eigerco/smove

- name: Install protoc
run: |
sudo apt-get install -y protobuf-compiler
protoc --version

- uses: actions/checkout@v3

- name: Rustfmt
uses: actions-rs/cargo@v1
with:
Expand All @@ -57,8 +62,18 @@ jobs:
- name: Add rust-src
run: |
rustup component add rust-src


- name: Cargo Clean
run: cargo clean

- name: Remove Cargo.lock
run: rm Cargo.lock

- name: Cargo Update
run: cargo update

- name: Build
run: cargo check --release

- name: Run tests
run: cargo test --release --locked --verbose --all
Loading
Loading