Workflows

What is a Workflow?
1 Workflow visible to you, out of a total of 1

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 ...

Type: Unrecognized workflow type

Creators: None

Submitter: James Coleman

Powered by
(v.1.17.3)
Copyright © 2008 - 2026 The University of Manchester and HITS gGmbH