File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed
Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ name : Test Setup
3+
4+ on :
5+ push :
6+ branches :
7+ - test-snyk
8+
9+ jobs :
10+ test-setup-alpine :
11+ name : Setup on ${{ matrix.os }}
12+ runs-on :
13+ - ${{ matrix.runner }}
14+ container :
15+ image : alpine:latest
16+ strategy :
17+ fail-fast : false
18+ matrix :
19+ include :
20+ - os : Alpine x86_64
21+ runner : ubuntu-24.04
22+ - os : Alpine ARM64
23+ runner : ubuntu-24.04-arm
24+ steps :
25+ - name : Install dependencies
26+ run : apk update && apk add curl bash git
27+ - name : Checkout fabasoad/snyk-actions
28+ run : |
29+ git clone -b feat/arch https://github.com/fabasoad/snyk-actions.git snyk-actions
30+ - name : Set up Snyk CLI
31+ uses : ./snyk-actions/setup
32+ with :
33+ os : Alpine
34+ arch : ${{ runner.arch }}
35+ - name : snyk version
36+ run : snyk --version
You can’t perform that action at this time.
0 commit comments