ci: debug 1 #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: Test Setup | |
| on: | |
| push: | |
| branches: | |
| - test-snyk | |
| jobs: | |
| test-setup-alpine: | |
| name: Setup on ${{ matrix.os }} | |
| runs-on: | |
| - ${{ matrix.runner }} | |
| container: | |
| image: alpine:latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - os: Alpine x86_64 | |
| runner: ubuntu-24.04 | |
| - os: Alpine ARM64 | |
| runner: ubuntu-24.04-arm | |
| steps: | |
| - name: Install dependencies | |
| run: apk update && apk add curl bash git | |
| - name: Checkout fabasoad/snyk-actions | |
| run: | | |
| git clone -b feat/arch https://github.com/fabasoad/snyk-actions.git snyk-actions | |
| - name: Set up Snyk CLI | |
| uses: ./snyk-actions/setup | |
| with: | |
| os: Alpine | |
| arch: ${{ runner.arch }} | |
| - name: snyk version | |
| run: snyk --version |