Sha256: 68bac17220822003a6ff564defc92d92317e464d6314fad70abb8fd386470822

Contents?: true

Size: 671 Bytes

Versions: 1

Compression:

Stored size: 671 Bytes

Contents

version: 2.1

jobs:
  build:
    docker:
      - image: alexfalkowski/ruby:3.1
    steps:
      - checkout
      - run: make dep
      - run: make lint
      - run: make features
      - store_test_results:
          path: reports
      - store_artifacts:
          path: coverage
      - store_artifacts:
          path: features/logs
    resource_class: large
  release:
    docker:
      - image: alexfalkowski/release:2.0
    steps:
      - checkout
      - run: release

workflows:
  nonnative:
    jobs:
      - build
      - release:
          context: gh
          requires:
            - build
          filters:
            branches:
              only: master

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
nonnative-1.67.0 .circleci/config.yml