升级
  100%
TA的每日心情 | 慵懒 昨天 11:39 |
---|
签到天数: 65 天 连续签到: 2 天 [LV.6]常住居民II
管理员
  
- 积分
- 1325
|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
测试yaml格式
- name: "CodeQL"
- on:
- push:
- branches: [ main ]
- pull_request:
- # The branches below must be a subset of the branches above
- branches: [ main ]
- schedule:
- - cron: '21 8 * * 3'
- jobs:
- analyze:
- name: Analyze
- runs-on: ubuntu-latest
- strategy:
- fail-fast: false
- matrix:
- language: [ 'java', 'javascript' ]
- # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
- # Learn more...
- # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection
- steps:
- - name: Checkout repository
- uses: actions/checkout@v2
- # Initializes the CodeQL tools for scanning.
- - name: Initialize CodeQL
- uses: github/codeql-action/init@v1
- with:
- languages: ${{ matrix.language }}
复制代码
|
|