108 - name: Check out code
109 uses: actions/checkout@v2.3.5
111 uses: actions/setup-ruby@v1.1.3
113 uses: actions/cache@v2.1.6
116 key: bundle-${{ runner.OS }}-${{ hashFiles('Gemfile.lock') }}
118 bundle-${{ runner.OS }}-
119 - name: Disable apparmor for mysqld
121 sudo apt-get install apparmor-utils
122 sudo aa-disable /usr/sbin/mysqld
126 bundle config set deployment true
127 bundle install --jobs 4 --retry 3
128 - name: Run kitchen test ${{ matrix.suite }}-${{ matrix.os }}
129 run: bundle exec kitchen test ${{ matrix.suite }}-${{ matrix.os }}