Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add initial TravisCI config file #9

Merged
merged 6 commits into from
Nov 3, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
0xazure marked this conversation as resolved.
Show resolved Hide resolved
- 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

|
seanprashad marked this conversation as resolved.
Show resolved Hide resolved

Tool for exporting GitHub stars as an organized list.

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