8 group: ${{ github.workflow }}-{{ github.head_ref || github.ref }}
9 cancel-in-progress: true
14 runs-on: ubuntu-latest
112 - name: Check out code
113 uses: actions/checkout@v3
115 uses: ruby/setup-ruby@v1
118 - name: Disable apparmor for mysqld
120 sudo apt-get install apparmor-utils
121 sudo aa-disable /usr/sbin/mysqld
122 - name: Run kitchen test ${{ matrix.suite }}-${{ matrix.os }}
123 run: bundle exec kitchen test ${{ matrix.suite }}-${{ matrix.os }}