From 271a41335a826e2ad56ca64412a1774dfccd434a Mon Sep 17 00:00:00 2001 From: Gokhan Gulbiz Date: Tue, 7 Feb 2023 10:20:31 +0300 Subject: [PATCH] Reorder steps --- .github/workflows/sqlancer-test-pipelines.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/sqlancer-test-pipelines.yml b/.github/workflows/sqlancer-test-pipelines.yml index da59bdae1..52226151c 100644 --- a/.github/workflows/sqlancer-test-pipelines.yml +++ b/.github/workflows/sqlancer-test-pipelines.yml @@ -32,17 +32,18 @@ jobs: run: | make install-all -sj$(cat /proc/cpuinfo | grep "core id" | wc -l) 2>&1 | tee -a output.log - - name: Checkout Sqlancer - uses: actions/checkout@v3 - with: - ref: master - repository: sqlancer/sqlancer - name: Setup Maven uses: s4u/setup-maven-action@v1.6.0 with: java-version: 11 + - name: Checkout Sqlancer + uses: actions/checkout@v3 + with: + ref: master + repository: sqlancer/sqlancer + - name: Build SQLancer run: mvn -B package -DskipTests=true