Add notice to README on main #138
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
# Copyright Kani Contributors | |
# SPDX-License-Identifier: Apache-2.0 OR MIT | |
name: Format Check | |
on: pull_request | |
jobs: | |
format-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout this repo | |
uses: actions/checkout@v2 | |
- name: Execute copyright check | |
run: ./scripts/run-copyright-check.sh | |
- name: Check C code formatting | |
run: ./scripts/run-clang-format.sh -d | |
- name: Check Python code formatting | |
run: | | |
pip3 install --upgrade autopep8 | |
./scripts/run-autopep8.sh |