mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-05 00:00:12 +00:00
20 lines
453 B
YAML
20 lines
453 B
YAML
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"
|
|
- git commit -am "Regenerate README" && git remote add upstream "https://$GH_TOKEN@github.com/carols10cents/rustlings.git" && git push -q upstream HEAD:master > /dev/null 2>&1 || true
|
|
|
|
notifications:
|
|
email:
|
|
on_success: never
|
|
|