114 - name: Check out code
115 uses: actions/checkout@v2.3.4
117 uses: actions/setup-ruby@v1.1.3
119 uses: actions/cache@v2.1.5
122 key: bundle-${{ runner.OS }}-${{ hashFiles('Gemfile.lock') }}
124 bundle-${{ runner.OS }}-
125 - name: Disable apparmor for mysqld
127 sudo apt-get install apparmor-utils
128 sudo aa-disable /usr/sbin/mysqld
132 bundle config set deployment true
133 bundle install --jobs 4 --retry 3
134 - name: Run kitchen test ${{ matrix.suite }}-${{ matrix.os }}
135 run: bundle exec kitchen test ${{ matrix.suite }}-${{ matrix.os }}