Skip to content

Show select/imply origin in menu display #19

Show select/imply origin in menu display

Show select/imply origin in menu display #19

Workflow file for this run

name: Style Check
on: [push, pull_request]
concurrency:
group: style-check-${{ github.ref }}
cancel-in-progress: true
jobs:
format-check:
name: Check Code Format
runs-on: ubuntu-latest
steps:
- name: Check out Kconfiglib source code
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.12'
- name: Install tools
run: |
sudo apt-get install -q=2 shfmt python3-pip
pip3 install black==25.9.0
- name: Run format check
run: |
.ci/check-newline.sh
.ci/check-format.sh
shell: bash