diff options
| author | Carol (Nichols || Goulding) <carol.nichols@gmail.com> | 2018-03-04 16:56:03 -0500 |
|---|---|---|
| committer | Carol (Nichols || Goulding) <carol.nichols@gmail.com> | 2018-03-04 16:56:03 -0500 |
| commit | bcba928f17044a30f8b12963b05af9936aa953b2 (patch) | |
| tree | 983e31097bc6e23bbcbb63402c924442ee037683 | |
| parent | 0c46f91fac51e56f55ba9c96964ac55f4447dd60 (diff) | |
Start of trying to make travis update the readme
| -rw-r--r-- | .travis.yml | 17 | ||||
| -rw-r--r-- | ex1.rs | 2 |
2 files changed, 18 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..be09ffb --- /dev/null +++ b/.travis.yml @@ -0,0 +1,17 @@ +language: rust + +branches: + only: + - master + +cache: + cargo: true + +script: + - cargo run --bin generate_readme + - git diff + +notifications: + email: + on_success: never + @@ -1,5 +1,5 @@ // ex1.rs -// Make me compile! +// Make me compile! :) fn main() { println(); |
