diff options
-rw-r--r-- | .circleci/config.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..844659f --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,15 @@ +version: 2.1 + +jobs: + test: + docker: + - image: cimg/rust:1.63.0 + steps: + - checkout + - run: cargo --version + - run: rustup install nightly + - run: rustup default nightly + - run: + name: Run Tests + command: cargo test --workspace --all-features + |