Add Fingerprint action #14
Workflow file for this run
This file contains 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: E2E test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
env: | |
DEBRICKED_TOKEN: ${{ secrets.DEBRICKED_TOKEN }} | |
jobs: | |
E2E-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: E2E test main action file | |
uses: ./ | |
- name: E2E test scan non-docker action file | |
uses: ./scan-non-docker | |
- name: E2E test fingerprint action file | |
uses: ./fingerprint@master | |
- name: E2E test fingerprint non-docker action file | |
uses: ./fingerprint-non-docker@master | |
- name: E2E test callgraph action file | |
uses: ./callgraph | |
- name: E2E test callgraph non-docker action file | |
uses: ./callgraph-non-docker@master | |
- name: E2E test resolve action file | |
uses: ./resolve | |
- name: E2E test resolve non-docker action file | |
uses: ./resolve-non-docker |