diff options
-rw-r--r-- | .woodpecker/tests.yaml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.woodpecker/tests.yaml b/.woodpecker/tests.yaml new file mode 100644 index 0000000..45662d9 --- /dev/null +++ b/.woodpecker/tests.yaml @@ -0,0 +1,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 |