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