Skip to content

7787: Add support for parsing allow/deny dependency lists from config… #1936

7787: Add support for parsing allow/deny dependency lists from config…

7787: Add support for parsing allow/deny dependency lists from config… #1936

Workflow file for this run

name: Debricked

Check failure on line 1 in .github/workflows/debricked.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/debricked.yml

Invalid workflow file

(Line: 12, Col: 9): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.DEBRICKED_TOKEN != ''
on:
push:
branches:
- main
pull_request:
jobs:
scan:
runs-on: ubuntu-latest
if: ${{ secrets.DEBRICKED_TOKEN != '' }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.23.0'
- name: Pull Supported Formats
run: |
cd cmd/debricked
go generate -v -x
- uses: GuillaumeFalourd/assert-command-line-output@v2.3
env:
DEBRICKED_TOKEN: ${{ secrets.DEBRICKED_TOKEN }}
with:
command_line: go run cmd/debricked/main.go scan -e "pkg/**" -e "test/**" -e "**/testdata/**"
contains: Successfully initialized scan
expected_result: PASSED