From 5d41314fe322f5af7e106e351aa5810f502d8bc9 Mon Sep 17 00:00:00 2001 From: Abd elrahman Mahmoud <131211223+abdahmed22@users.noreply.github.com> Date: Fri, 19 Jul 2024 11:20:25 +0300 Subject: [PATCH] fix: removed duplicate checkout and install dependencies --- .github/workflows/fmt.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/fmt.yml b/.github/workflows/fmt.yml index 85aa25a..19a70f0 100644 --- a/.github/workflows/fmt.yml +++ b/.github/workflows/fmt.yml @@ -18,19 +18,14 @@ jobs: runs-on: ubuntu-latest steps: + - name: Checkout code - uses: actions/checkout@v4 - name: Install Go uses: actions/setup-go@v5 with: go-version: ${{ env.GO_VERSION }} - - - name: Checkout code - uses: actions/checkout@v4 - - name: Install dependencies - run: make install_dependencies - - name: Run format run: make format