diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..6fd497f --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,11 @@ +version: 2 +jobs: + build: + docker: + - image: rust + steps: + - run: apt -y update --fix-missing + - run: apt -y install libgc-dev + - checkout + - run: cargo build + - run: cd examples && ./test.sh