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