From 5ba4c4b0a35a7345c2ec7d91876336735ec0572b Mon Sep 17 00:00:00 2001 From: federicorojas Date: Mon, 20 Jan 2025 11:10:14 +0100 Subject: [PATCH] Add .github/workflows/ci-scripts-check-format.yml Run check_no_lineids.sh, check_code_before_sq_brackets and check_fix_white_space. --- .github/workflows/ci-scripts-check-format.yml | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/ci-scripts-check-format.yml diff --git a/.github/workflows/ci-scripts-check-format.yml b/.github/workflows/ci-scripts-check-format.yml new file mode 100644 index 0000000..7420d38 --- /dev/null +++ b/.github/workflows/ci-scripts-check-format.yml @@ -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 + +