Skip to content

Commit a9a9d4c

Browse files
committed
ci: debug 1
1 parent adedf3b commit a9a9d4c

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

.github/workflows/test-setup.yaml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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

0 commit comments

Comments
 (0)