rustlings/.travis.yml

22 lines
447 B
YAML
Raw Normal View History

language: rust
branches:
only:
- master
cache:
cargo: true
script:
- cargo run --bin generate_readme
- git config user.name "Carol (Nichols || Goulding)"
- git config user.email "carol.nichols@gmail.com"
2018-03-05 09:05:53 -06:00
- git commit -am "Regenerate README"
2018-03-05 09:00:53 -06:00
- git remote add upstream "https://$GH_TOKEN@github.com/carols10cents/rustlings.git"
- git push -q upstream HEAD:master > /dev/null 2>&1
notifications:
email:
on_success: never