Sha256: 5d2894fbc94ab93b87dca5f4db148df35e924e9007aec8424c047b32b4b08963
Contents?: true
Size: 913 Bytes
Versions: 17
Compression:
Stored size: 913 Bytes
Contents
version: 2.1 jobs: build: docker: - image: alexfalkowski/ruby:3.0 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 workflows: nonnative: jobs: - build - release: context: gh requires: - build filters: branches: only: master
Version data entries
17 entries across 17 versions & 1 rubygems