Sha256: 31db2226a3b37ce3ef2038a596a3cd19cc4993d1d86d25da4beb65673f8b900f
Contents?: true
Size: 916 Bytes
Versions: 1
Compression:
Stored size: 916 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.sh 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.48.0 | .circleci/config.yml |