Add .github/workflows/ci-scripts-check-format.yml
Run check_no_lineids.sh, check_code_before_sq_brackets and check_fix_white_space.
This commit is contained in:
26
.github/workflows/ci-scripts-check-format.yml
vendored
Normal file
26
.github/workflows/ci-scripts-check-format.yml
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
name: checkformat
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: check_no_lineids
|
||||
run: |
|
||||
/bin/sh ./check_no_lineids.sh
|
||||
|
||||
- name: check_code_before_sq_brackets
|
||||
run: |
|
||||
/bin/sh ./check_code_before_sq_brackets.sh
|
||||
|
||||
- name: check_fix_white_space
|
||||
run: |
|
||||
python check_fix_white_space.py
|
||||
|
||||
|
||||
Reference in New Issue
Block a user