From 388d06c8eecff6685b08bebbfc33020782495962 Mon Sep 17 00:00:00 2001 From: Krishna Vedala <7001608+kvedala@users.noreply.github.com> Date: Fri, 29 May 2020 21:46:28 -0400 Subject: [PATCH] reorganize pull commands --- .github/workflows/clang-format.yml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/.github/workflows/clang-format.yml b/.github/workflows/clang-format.yml index 15a6ae647..0cfa72e59 100644 --- a/.github/workflows/clang-format.yml +++ b/.github/workflows/clang-format.yml @@ -127,9 +127,8 @@ jobs: steps: - uses: actions/checkout@v1 - uses: actions/setup-python@v1 - - run: | - pip install cpplint - git pull + - run: pip install cpplint + - run: git pull - run: cpplint --filter=-legal --recursive . build: @@ -143,9 +142,6 @@ jobs: - uses: actions/checkout@master with: submodules: true - - name: git pull - run: git pull - - name: configure - run: cmake -B ./build -S . - - name: build - run: cmake --build build + - run: git pull + - run: cmake -B ./build -S . + - run: cmake --build build