yearly branch update 28nov2023 #56
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: repository-check | |
on: | |
push: | |
jobs: | |
code-style: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt install clang-format | |
- name: Checkout this repository | |
uses: actions/checkout@v2 | |
- name: Run code style check | |
run: | | |
./style_check.sh |