From d0d2937c42304b9e2805ac0ba8bd1bc2b2d7604c Mon Sep 17 00:00:00 2001 From: Syndamia Date: Mon, 8 Jan 2024 17:39:45 +0200 Subject: [.github/feature-branch] Reworked to properly use clone repo artifact --- .github/workflows/feature-branch.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/feature-branch.yml b/.github/workflows/feature-branch.yml index 86b7cfd..c7ab192 100644 --- a/.github/workflows/feature-branch.yml +++ b/.github/workflows/feature-branch.yml @@ -1,4 +1,4 @@ -name: feature-branch +name: Tests and static analysis on: push: branches-ignore: @@ -22,7 +22,10 @@ jobs: runs-on: ubuntu-latest needs: Clone-repo steps: - - uses: actions/checkout@v4 + - uses: actions/download-artifact@v3 + with: + name: source-code + path: . - name: Build server and browser run: make tests @@ -30,7 +33,9 @@ jobs: runs-on: ubuntu-latest needs: Clone-repo steps: - - uses: actions/checkout@v4 + - uses: actions/download-artifact@v3 + with: + name: source-code + path: . - name: Build server and browser run: make static-analysis - -- cgit v1.2.3