118 - name: Check out code
119 uses: actions/checkout@v2
121 uses: actions/setup-ruby@v1.1.2
123 uses: actions/cache@v2
126 key: bundle-${{ runner.OS }}-${{ hashFiles('Gemfile.lock') }}
128 bundle-${{ runner.OS }}-
129 - name: Disable apparmor for mysqld
131 sudo apt-get install apparmor-utils
132 sudo aa-disable /usr/sbin/mysqld
136 bundle config set deployment true
137 bundle install --jobs 4 --retry 3
138 - name: Run kitchen test ${{ matrix.suite }}-${{ matrix.os }}
139 run: bundle exec kitchen test ${{ matrix.suite }}-${{ matrix.os }}