From 28c2cec110d0bd3dbc650dbbb8879ad15f4e098d Mon Sep 17 00:00:00 2001 From: Davidson Souza Date: Thu, 23 Nov 2023 16:13:31 -0300 Subject: [PATCH] remove linting for now --- .github/workflows/c-cpp.yml | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index e6968fd..6d7f671 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -13,19 +13,14 @@ jobs: steps: - uses: actions/checkout@v3 + - name: make - run: make + run: autoreconf -fi && ./configure && make + - name: make test - run: make test - - formatting-check: - name: Formatting Check - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Run clang-format style check for C/C++/Protobuf programs. - uses: jidicula/clang-format-action@v4.11.0 - with: - clang-format-version: '13' - check-path: 'src' - fallback-style: 'Mozilla' # optional + run: autoreconf -fi && \ + ./configure && \ + make check &&\ + ./test_flat_file &&\ + ./test_forest +