CultureHQ / actions-bundler

GitHub actions wrapper for the bundler CLI

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Deprecated - use ruby/setup-ruby instead

GitHub Actions for bundler

Build Status This Action for bundler enables arbitrary actions with the bundler command-line client. Uses the ruby:2.6.3 docker image as its base.

Usage

An example workflow to lint and test:

workflow "Main" {
  on = "push"
  resolves = ["Lint", "Test"]
}

action "Install" {
  uses = "CultureHQ/actions-bundler@master"
  args = "install"
}

action "Lint" {
  needs = "Install"
  uses = "CultureHQ/actions-bundler@master"
  args = "exec rubocop"
}

action "Test" {
  needs = "Install"
  uses = "CultureHQ/actions-bundler@master"
  args = "exec rake"
}

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/CultureHQ/actions-bundler.

License

The code is available as open source under the terms of the MIT License.

About

GitHub actions wrapper for the bundler CLI

License:MIT License


Languages

Language:Shell 55.0%Language:Dockerfile 43.1%Language:Ruby 1.8%