e2e: Enhance the e2e testing of the ai-proxy plugin based on the LLM mock server #2930
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: License checker | |
on: | |
pull_request: | |
branches: [ develop, main ] | |
jobs: | |
check-license: | |
runs-on: ubuntu-latest | |
steps: | |
# step 1 | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# step 2 | |
- name: Check License Header | |
uses: apache/skywalking-eyes/header@25edfc2fd8d52fb266653fb5f6c42da633d85c07 | |
with: | |
log: info | |
config: .licenserc.yaml | |
mode: check | |
# step 3 | |
- name: Check Dependencies' License | |
uses: apache/skywalking-eyes/dependency@25edfc2fd8d52fb266653fb5f6c42da633d85c07 | |
with: | |
log: info | |
config: .licenserc.yaml | |
mode: check |