From 423be52768e8eef0422d9a89b7ba814594b0db14 Mon Sep 17 00:00:00 2001 From: Lywx Date: Sat, 17 Feb 2024 07:44:12 -0600 Subject: [PATCH] Swapped rule order on ci action (#134) --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a15d3de9..21bdc828 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -23,12 +23,12 @@ jobs: - name: Install Python dependencies run: python3 -m pip install -r ./tools/requirements-python.txt - - name: build toolchain - run: make -s -C tools - - name: Update submodules run: git submodule update --init --recursive + - name: build toolchain + run: make -s -C tools + - name: Get extra dependencies uses: actions/checkout@v4 with: