From 2f7eaf1303918e853c5d9678c6347160379b0261 Mon Sep 17 00:00:00 2001 From: Noah Silvera Date: Wed, 31 Mar 2021 10:30:12 -0700 Subject: Add .circleci/config.yml We want to switch from travis CI to circle CI as we have run out of credits on travis, and circle CI has a robust orb for running tests for solidus extensions. --- .circleci/config.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..ec33812 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,20 @@ +version: 2.1 +orbs: + # Always take the latest version of the orb, this allows us to + # run specs against Solidus supported versions only without the need + # to change this configuration every time a Solidus version is released + # or goes EOL. + solidusio_extensions: solidusio/extensions@volatile + +jobs: + run-specs-with-postgres: + executor: solidusio_extensions/postgres + steps: + - checkout + - solidusio_extensions/run-tests-solidus-older + - solidusio_extensions/store-test-results + +workflows: + "Run specs on supported Solidus versions": + jobs: + - run-specs-with-postgres -- cgit v1.2.3