Update breaking changes from stellar_xdr crate #73
Workflow file for this run
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] | |
name: Cargo build and test | |
jobs: | |
build_and_test: | |
name: Build and test Stellar SDK | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- uses: actions-rs/cargo@v1 | |
name: cargo update | |
with: | |
command: update | |
- uses: actions-rs/cargo@v1 | |
name: cargo test | |
with: | |
command: test | |
# - uses: actions-rs/cargo@v1 | |
# with: | |
# command: build | |
# args: --release --all-features |