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