TU2BNAKM7B5SJKFQZOSXI2KSKHX7YHDKMIYEVGM7FTEA7Y4VHD6AC name: Pull request# This workflow is triggered on pushes to the repository.on: [pull_request]jobs:check:name: Checkruns-on: ubuntu-lateststeps:- uses: actions/checkout@v2with:# A PR should not contain too many commitsfetch-depth: 10- run: git show-ref- uses: actions-rs/install@v0.1with:crate: convcoversion: latest- name: Validate commit messagesrun: convco check ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }}- name: Install stable toolchainuses: actions-rs/toolchain@v1with:profile: minimaltoolchain: stable- name: Run testsuses: actions-rs/cargo@v1with:command: test