Sha256: 50e4932fbdafbc1848d55fba8fb08002e7f1a80db9685ad5d1146ab9fed0720d
Contents?: true
Size: 916 Bytes
Versions: 12
Compression:
Stored size: 916 Bytes
Contents
version: 2.1 jobs: build: docker: - image: alexfalkowski/ruby:2.7 steps: - checkout - restore_cache: keys: - nonnative-gem-cache-{{ checksum "Gemfile.lock" }} - nonnative-gem-cache- - run: make dep - save_cache: key: nonnative-gem-cache-{{ checksum "Gemfile.lock" }} paths: - vendor/bundle - run: make features - store_test_results: path: reports - run: make lint - store_artifacts: path: coverage - store_artifacts: path: features/logs release: docker: - image: alexfalkowski/release:2.0 steps: - checkout - run: release.sh workflows: nonnative: jobs: - build - release: context: gh requires: - build filters: branches: only: master
Version data entries
12 entries across 12 versions & 1 rubygems