Skip to content

HOTFIX: ContainerDefinition#system_controls now returns [] instead of… #34

HOTFIX: ContainerDefinition#system_controls now returns [] instead of…

HOTFIX: ContainerDefinition#system_controls now returns [] instead of… #34

Workflow file for this run

name: CI
on:
push:
branches:
pull_request:
jobs:
rspec:
name: RSpec
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- '2.6'
- '2.7'
- '3.0'
- '3.1'
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rspec
rubocop:
name: RuboCop
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
# Use the same version with .rubocop.yml
ruby-version: 2.6
bundler-cache: true
- run: bundle exec rubocop