Skip to content

Commit 5f6ad3b

Browse files
authored
Merge pull request #17 from mstallmo/feature/travis-ci
Travis CI build config
2 parents 34d2b5c + 5e12cf8 commit 5f6ad3b

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

.travis.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
language: rust
2+
rust:
3+
- nightly
4+
cache: cargo
5+
script:
6+
- cargo build --all --release
7+
- cargo test
8+

Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,8 @@ license = "MIT"
77
description = "A Rocket.rs fairing for a better development experience when using React and WebPack"
88

99
[dependencies]
10-
rocket = "0.3.16"
11-
log = "0.4"
10+
rocket = "0.3"
11+
log = "0.4"
12+
13+
[badges]
14+
travis-ci = { repository = "mstallmo/rocket_igniter"}

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
# Rocket Igniter 💨 🔥
22

3+
[![Build Status](https://travis-ci.com/mstallmo/rocket_igniter.svg?branch=master)](https://travis-ci.com/mstallmo/rocket_igniter)
4+
35
A Rocket.rs fairing for a better development experience when using React and WebPack

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(plugin, decl_macro, proc_macro_non_items)]
1+
#![feature(plugin, decl_macro)]
22

33
extern crate rocket;
44
#[macro_use]

0 commit comments

Comments
 (0)