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