diff options
author | HampusM <hampus@hampusmat.com> | 2022-08-28 10:50:42 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-08-28 10:50:42 +0200 |
commit | 4481a99d55f56eae9b4ee88d5395cfadcf8dabe9 (patch) | |
tree | 63f33ff6ea97f84460b17d9364f75df37cccb739 /.circleci/config.yml | |
parent | e0f90a8e384615c79d7d51c66d19294d75e79391 (diff) |
ci: add CircleCI config
Diffstat (limited to '.circleci/config.yml')
-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 + |