mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-18 00:05:42 +00:00
22 lines
323 B
YAML
22 lines
323 B
YAML
sudo: false
|
|
language: rust
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
cache: cargo
|
|
|
|
matrix:
|
|
fast_finish: false
|
|
include:
|
|
- rust: stable
|
|
|
|
script:
|
|
- cargo test --all
|
|
- cargo clean
|
|
- ./init.sh
|
|
- ./build.sh
|
|
- if [ "$TRAVIS_PULL_REQUEST" != "true" ] && [ "$TRAVIS_BRANCH" == "master" ]; then
|
|
./publish-wasm.sh;
|
|
fi
|