statement_list_parsert: construct with message handler #1976
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Syntactic checks | |
on: | |
pull_request: | |
branches: [ develop ] | |
jobs: | |
# This job takes approximately 1 minute | |
check-clang-format: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: Fetch dependencies | |
env: | |
# This is needed in addition to -yq to prevent apt-get from asking for | |
# user input | |
DEBIAN_FRONTEND: noninteractive | |
run: | | |
sudo apt-get update | |
sudo apt-get install --no-install-recommends -yq clang-format-11 | |
- name: Check updated lines of code match clang-format-11 style | |
env: | |
BASE_BRANCH: ${{ github.base_ref }} | |
MERGE_BRANCH: ${{ github.ref }} | |
run: ./.github/workflows/pull-request-check-clang-format.sh | |
# This job takes approximately 1 minute | |
check-cpplint: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: Fetch dependencies | |
env: | |
# This is needed in addition to -yq to prevent apt-get from asking for | |
# user input | |
DEBIAN_FRONTEND: noninteractive | |
run: | | |
sudo apt-get update | |
sudo apt-get install --no-install-recommends -yq python3-unidiff | |
- name: Check updated lines of code meet linting standards | |
env: | |
BASE_BRANCH: ${{ github.base_ref }} | |
MERGE_BRANCH: ${{ github.ref }} | |
run: ./.github/workflows/pull-request-check-cpplint.sh | |
# This job should take about a minute (est) | |
check-rustfmt: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout CBMC repository | |
uses: actions/checkout@v4 | |
- name: Install latest stable Rust toolchain | |
run: | | |
rustup toolchain install stable --profile minimal --no-self-update -c clippy -c rustfmt | |
- name: Run `cargo fmt` on top of Rust API project | |
run: cd src/libcprover-rust; cargo fmt --all -- --check |