Merge pull request #90 from sephynox/sidechains #250
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
on: | |
push: | |
branches: | |
- dev | |
pull_request: | |
branches: | |
- main | |
- dev | |
name: Unit | |
jobs: | |
build_and_test: | |
name: xrpl-rust | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- uses: actions-rs/cargo@v1 | |
name: Build with default features | |
with: | |
command: build | |
args: --release | |
- uses: actions-rs/cargo@v1 | |
name: Build with no default features | |
with: | |
command: build | |
args: --release --no-default-features | |
- uses: actions-rs/cargo@v1 | |
name: Build for no_std | |
with: | |
command: build | |
args: --release --no-default-features --features embassy-rt,core,wallet,models,helpers,websocket,json-rpc | |
- uses: actions-rs/cargo@v1 | |
name: Build only core | |
with: | |
command: build | |
args: --release --no-default-features --features core | |
- uses: actions-rs/cargo@v1 | |
name: Build only wallet | |
with: | |
command: build | |
args: --release --no-default-features --features wallet | |
- uses: actions-rs/cargo@v1 | |
name: Build only models | |
with: | |
command: build | |
args: --release --no-default-features --features models | |
- uses: actions-rs/cargo@v1 | |
name: Build only helpers | |
with: | |
command: build | |
args: --release --no-default-features --features websocket,json-rpc,helpers,tokio-rt | |
- uses: actions-rs/cargo@v1 | |
name: Build only websocket | |
with: | |
command: build | |
args: --release --no-default-features --features websocket | |
- uses: actions-rs/cargo@v1 | |
name: Build only core | |
with: | |
command: build | |
args: --release --no-default-features --features json-rpc | |
- uses: actions-rs/cargo@v1 | |
name: Test with default features | |
with: | |
command: test | |
args: --release | |
- uses: actions-rs/cargo@v1 | |
name: Test for no_std | |
with: | |
command: test | |
args: --release --no-default-features --features embassy-rt,core,wallet,models,helpers,websocket,json-rpc |