forked from pytorch/text
-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (32 loc) · 1.06 KB
/
codeql.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# GitHub Actions CodeQL Workflow
name: CodeQL
on:
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: python, cpp
- name: Install Ninja
run: |
sudo apt-get update -y
sudo apt-get install -y ninja-build
- name: Update submodules
run: git submodule update --init --recursive
- name: Install Torch
run: |
python -m pip install cmake
python -m pip install torch==1.8.1+cpu -f https://download.pytorch.org/whl/torch_stable.html
sudo ln -s /usr/bin/ninja /usr/bin/ninja-build
- name: Build TorchText
run: python setup.py develop --user
# If any code scanning alerts are found, they will be under Security -> CodeQL
# Link: https://github.com/pytorch/text/security/code-scanning
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1