Sha256: 2298d1b2ec72a398111945874b70490d34a7563cb4b68b46869fe84084787412

Contents?: true

Size: 991 Bytes

Versions: 3

Compression:

Stored size: 991 Bytes

Contents

---
version: 2.1
jobs:
  test:
    docker:
      - image: circleci/ruby:2.6-node
        environment:
          DATABASE_URL: postgresql://ubuntu@127.0.0.1/db_test
          BUNDLE_JOBS: 4
          BUNDLE_RETRY: 3

      - image: circleci/postgres:alpine-ram
        environment:
          POSTGRES_USER: ubuntu
          POSTGRES_DB: db_test
    parallelism: 1
    steps:
      - checkout
      - run: gem install rails -N --update-sources
      - run: sudo apt-get install cmake curl yamllint python3-setuptools python3-pkg-resources
      - run: curl -fLSs https://circle.ci/cli | sudo bash
      - run: git config --global user.email "you@example.com" && git config --global user.name "Your Name"
      - run: bin/test
      - run: TEST_APP_TEMPLATE=true bin/test

workflows:
  test:
    jobs:
      - test

  daily:
    triggers:
      - schedule:
          cron: "0 0 * * *"
          filters:
            branches:
              only:
                - master
    jobs:
      - test

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
jt_tools-0.0.5 .circleci/config.yml
jt_tools-0.0.4 .circleci/config.yml
jt_tools-0.0.3 .circleci/config.yml