diff options
| author | Syndamia <kamen@syndamia.com> | 2024-01-08 17:39:45 +0200 |
|---|---|---|
| committer | Syndamia <kamen@syndamia.com> | 2024-01-08 17:39:45 +0200 |
| commit | d0d2937c42304b9e2805ac0ba8bd1bc2b2d7604c (patch) | |
| tree | ac6820cc57bea0f3084b6406b438633b56cfde6a /.github/workflows | |
| parent | 7c4e491d18f3a4999b6c1b7c852f6892756d1db8 (diff) | |
| download | pico-web-d0d2937c42304b9e2805ac0ba8bd1bc2b2d7604c.tar pico-web-d0d2937c42304b9e2805ac0ba8bd1bc2b2d7604c.tar.gz pico-web-d0d2937c42304b9e2805ac0ba8bd1bc2b2d7604c.zip | |
[.github/feature-branch] Reworked to properly use clone repo artifact
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/feature-branch.yml | 13 |
1 files 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 - |
