Sha256: 4fd808ac6cac7b784dece743951e3207999a8b9d92655ef2e00f3fa948d73cd0
Contents?: true
Size: 1.12 KB
Versions: 5
Compression:
Stored size: 1.12 KB
Contents
name: CI # Controls when the action will run. # Github Actions multiple gemfile support? on: # Triggers the workflow on push or pull request events but only for the master branch push: branches: [main] pull_request: branches: [main] jobs: test: strategy: fail-fast: false matrix: # need to figure out how to use redis on macos github actions # os: [ubuntu, macos] os: [ubuntu] # remove until I sort out CI issues for truffle # truffleruby, # truffleruby-head, # removing jruby again to flaky # ruby: [2.3, 2.4, 2.5, 2.6, 2.7, "3.0", "3.1", jruby] # need to add support for multiple gemfiles ruby: ["2.7", "3.0", "3.1"] redis-version: [4, 5, 6] runs-on: ${{ matrix.os }}-latest steps: - uses: actions/checkout@v2 - uses: supercharge/redis-github-action@1.2.0 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically - run: bundle exec standardrb - run: bundle exec rake
Version data entries
5 entries across 5 versions & 1 rubygems