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