From 40af5a53a934a63bc5360f7f853572f0db1047cb Mon Sep 17 00:00:00 2001 From: Krishna Vedala <7001608+kvedala@users.noreply.github.com> Date: Fri, 29 May 2020 21:42:32 -0400 Subject: [PATCH] pull before proceeding --- .github/workflows/clang-format.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/clang-format.yml b/.github/workflows/clang-format.yml index ecccb1149..15a6ae647 100644 --- a/.github/workflows/clang-format.yml +++ b/.github/workflows/clang-format.yml @@ -64,6 +64,8 @@ jobs: steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v1 + - name: pull latest commit + run: git pull - name: Update DIRECTORY.md shell: python run: | @@ -125,7 +127,9 @@ jobs: steps: - uses: actions/checkout@v1 - uses: actions/setup-python@v1 - - run: pip install cpplint + - run: | + pip install cpplint + git pull - run: cpplint --filter=-legal --recursive . build: @@ -139,6 +143,8 @@ jobs: - uses: actions/checkout@master with: submodules: true + - name: git pull + run: git pull - name: configure run: cmake -B ./build -S . - name: build