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