Skip to content
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,25 @@ jobs:
runs-on: S60

steps:
- name: Setup SSH Agent
uses: webfactory/ssh-agent@v0.9.0
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}

- name: Checkout SAST tools
uses: actions/checkout@v4
with:
repository: ${{ env.SAST_REPO }}
ref: ${{ env.SAST_BRANCH }}
repository: ${{env.SAST_REPO}}
ref: ${{env.SAST_BRANCH}}
path: ./sast
ssh-key: ${{ secrets.SSH_PUB_KEY }}

- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0 # Required for full git history to compare changes
path: ./vllm-gcu
ssh-key: ${{ secrets.SSH_PUB_KEY }}

- name: Run static code analysis
run: |
Expand Down