diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..3b0ad9b --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,21 @@ +# Rust CircleCI 2.1 configuration file +version: 2.1 +aliases: + - &rust_container + docker: + - image: cimg/rust:1.75.0 +jobs: + testing: + <<: *rust_container + steps: + - checkout + - run: + name: Run Tests + command: | + cargo test --all-features + +workflows: + version: 2 + test: + jobs: + - testing