diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..d6b3b61 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,21 @@ +--- +version: 2.1 +jobs: + cheese-shop: + machine: + image: ubuntu-2204:2023.02.1 + steps: + - run: "pip install pycups" + run-tests: + machine: + image: ubuntu-2204:2023.02.1 + steps: + - checkout + - run: "make" + - run: "sudo make install" + - run: "python3 test.py" +workflows: + main-workflow: + jobs: + - run-tests + - cheese-shop