Skip to content

Commit

Permalink
Setup Travis (#3)
Browse files Browse the repository at this point in the history
* Setup Travis

* Setup Travis - Add clippy

* Update README
  • Loading branch information
nevrending authored Nov 11, 2019
1 parent 97e0969 commit 6c5eda4
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
sudo: false
language: rust
rust:
- stable
- beta
cache: cargo
jobs:
allow_failures:
- rust: beta
fast_finish: true
script:
- cargo build --verbose
- cargo test
- rustup component add clippy
- cargo clippy --all-targets --all-features -- -D warnings --verbose
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Websocket Core (Rust)

![Build Status](https://github.com/bitwyre/websocket_core/workflows/Build/badge.svg)
![Build Status](https://travis-ci.com/bitwyre/websocket_core.svg?branch=master)

Websocket generic server library for:

Expand Down

0 comments on commit 6c5eda4

Please sign in to comment.