Tedla
Version 1

Workflow Type: Unrecognized workflow type

name: "CI" on: [push, pull_request]

jobs: build: strategy: fail-fast: false matrix: ruby: ["2.5", "2.6", "2.7", "3.0"]

runs-on: macos-latest
steps:
# Setup env
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
  with:
    ruby-version: "${{ matrix.ruby }}"

# Show env
- name: Show macOS version
  run: sw_vers
- name: Show env versions
  run: |
    ruby --version
    bundler --version
    echo $HOME

# Prepare
- name: Install bundler 2.2.20
  run: gem install bundler -v "~> 2.2.20"
- name: Install ruby dependencies
  run: |
    bundle config --local clean 'true'
    bundle config --local path '.vendor'
    bundle config --local jobs 8
    bundle config --local without 'system_tests'
    bundle install

- name: Run test
  run: bundle exec rake spec
- name: Run lint
  run: bundle exec rake rubocop

Version History

Version 1 (earliest) Created 27th Apr 2026 at 16:00 by James Coleman

Initial commit


Open master 645294c
help Creators and Submitter
Creators
Not specified
Submitter
Activity

Views: 322   Downloads: 33

Created: 27th Apr 2026 at 16:00

help Tags

This item has not yet been tagged.

help Attributions

None

Total size: 231 KB
Powered by
(v.1.17.3)
Copyright © 2008 - 2026 The University of Manchester and HITS gGmbH