diff options
author | HampusM <hampus@hampusmat.com> | 2022-08-28 11:03:55 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-08-28 11:03:55 +0200 |
commit | 2b8715f935db3129e1b6be907cad0a96370c2034 (patch) | |
tree | c4c9031dbc51c61af79531b0056f4368d467c1bf /.circleci | |
parent | 4481a99d55f56eae9b4ee88d5395cfadcf8dabe9 (diff) |
ci: add workflow to CircleCI config
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 844659f..9637cdf 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,7 +1,7 @@ version: 2.1 jobs: - test: + test-all: docker: - image: cimg/rust:1.63.0 steps: @@ -13,3 +13,8 @@ jobs: name: Run Tests command: cargo test --workspace --all-features +workflows: + test: + jobs: + - test-all + |