mirror of
https://github.com/Llewellynvdm/exa.git
synced 2024-10-31 18:52:29 +00:00
31a2eba2fe
• Modernise the Travis incantations, which have become old and faded since they were first written • Specify a MSRV (1.42.0) and compile on more architectures • Test the power set of features on Stable
20 lines
312 B
YAML
20 lines
312 B
YAML
language: rust
|
|
rust:
|
|
- 1.42.0
|
|
- stable
|
|
- beta
|
|
- nightly
|
|
|
|
jobs:
|
|
fast_finish: true
|
|
allow_failures:
|
|
- rust: nightly
|
|
|
|
include:
|
|
- name: 'Rust: test with all features'
|
|
rust: stable
|
|
install:
|
|
- cargo install cargo-hack
|
|
script:
|
|
- cargo hack test --feature-powerset
|