Skip to content

Commit

Permalink
feat: Add TravisCI config file
Browse files Browse the repository at this point in the history
Closes #3.
  • Loading branch information
Sean authored and 0xazure committed Nov 3, 2018
1 parent d671a2e commit 3a6b61f
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
24 changes: 24 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
language: rust
os:
- linux
- windows
rust:
- stable
- beta
- nightly
# Need to cache the whole `.cargo` directory to keep .crates.toml for
# cargo-update to work, but don't cache the cargo registry
before_cache:
- rm -rf /home/travis/.cargo/registry
cache:
directories:
- /home/travis/.cargo
before_script:
- rustup component add clippy-preview
script:
- cargo clippy --all-targets --all-features -- -D warnings
- cargo test --verbose
matrix:
allow_failures:
- rust: nightly
fast_finish: true
7 changes: 6 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
supernova
=========

Tool for exporting GitHub stars as an organized list.
.. image:: https://travis-ci.org/0xazure/supernova.svg?branch=master
:target: https://travis-ci.org/0xazure/supernova

|
Tool for exporting GitHub stars as an organized list.

things learned
--------------
Expand Down

0 comments on commit 3a6b61f

Please sign in to comment.