blob: 45662d9535861282ef7f9970fa0b2bae609524f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
when:
- event: push
branch: master
steps:
- name: test
image: rust
commands:
- cargo test
- name: test(simd)
image: rustlang/rust:nightly
commands:
- cargo test --features=simd
|