Skip to content

Commit

Permalink
Run specs with CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
kennyadsl committed Jul 10, 2019
1 parent cdf6a8a commit 1689ff1
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 3 deletions.
35 changes: 35 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,35 @@
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:
- solidusio_extensions/run-tests
run-specs-with-mysql:
executor: solidusio_extensions/mysql
steps:
- solidusio_extensions/run-tests

workflows:
"Run specs on supported Solidus versions":
jobs:
- run-specs-with-postgres
- run-specs-with-mysql
"Weekly run specs against master":
triggers:
- schedule:
cron: "0 0 * * 4" # every Thursday
filters:
branches:
only:
- master
jobs:
- run-specs-with-postgres
- run-specs-with-mysql
6 changes: 3 additions & 3 deletions README.md
@@ -1,8 +1,8 @@
# SolidusSubscriptions

A Solidus extension for subscriptions. **Important note**: this is
**PRE-RELEASE** software and is currently a work-in-progress. There are **no
guarantees** this will work for your store!
[![CircleCI](https://circleci.com/gh/solidusio-contrib/solidus_subscriptions/tree/master.svg?style=svg)](https://circleci.com/gh/solidusio-contrib/solidus_subscriptions/tree/master)

A Solidus extension for subscriptions.

Sponsored by [Goby](https://www.goby.co) - Electrify your routine!

Expand Down

0 comments on commit 1689ff1

Please sign in to comment.