diff options
author | Sam Scott <sam.scott89@gmail.com> | 2020-06-03 10:26:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-03 10:26:45 -0400 |
commit | 77cb6730f9265591dad141f4f9b840069c9cd2b9 (patch) | |
tree | 6c4cd170f74d0c789e1059a91514d04dc06decba /.travis.yml | |
parent | d5c2d3e44a5cbe2311111fb56bfe6bed8fabd961 (diff) |
Support actix-web v2 (#30)
* update dependencies
- actix-web v2
- percent encoding v2.1
- rust 2018 edition
- remove rustfmt no longer supported rules
* ci: add feature build matrix
* fix actix unit tests
Co-authored-by: Mario Reder <mreder1289@gmail.com>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 6e09135..f698d07 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,4 +5,11 @@ rust: - nightly matrix: allow_failures: - - rust: nightly
\ No newline at end of file + - rust: nightly +env: + - ARGS="--verbose" + - ARGS="--verbose --features=actix" + +script: + - cargo build $ARGS + - cargo test $ARGS |