-
Notifications
You must be signed in to change notification settings - Fork 6
52 lines (51 loc) · 1.35 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: Build the project (commented out)
#
on:
pull_request:
paths:
- src/**
- Cargo.toml
- rpc/**
- .github/workflows/build.yml
env:
CARGO_TERM_COLOR: always
#
jobs:
build:
name: Run fmt and clippy
runs-on: ubuntu-latest
steps:
- name: Checkout eigerco/pallet-move
uses: actions/checkout@v3
with:
repository: eigerco/pallet-move
path: pallet-move
#
# - name: Checkout eigerco/substrate-node-template-move-vm-test
# uses: actions/checkout@v3
# with:
# repository: eigerco/substrate-node-template-move-vm-test
# ref: polkadot-1.0.0-pallet-move
# path: substrate-node-template-move-vm-test
#
# - name: Install Protoc
# uses: arduino/setup-protoc@v2
#
# - name: Setup Rust
# uses: actions-rs/toolchain@v1
# with:
# override: true
# profile: minimal
# toolchain: nightly
# target: wasm32-unknown-unknown
#
# - name: Rust cache
# uses: Swatinem/rust-cache@v2
# with:
# workspaces: "./substrate-node-template-move-vm-test -> target"
#
# - name: Build project
# uses: actions-rs/cargo@v1
# with:
# command: build
# args: --release --manifest-path=substrate-node-template-move-vm-test/Cargo.toml