mirror of
https://github.com/mandiant/capa.git
synced 2026-01-02 16:00:17 -08:00
Add the rule linter to the CI GitHub action. A similar actions should be added to `capa-rules` as well.
43 lines
1011 B
YAML
43 lines
1011 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
code_style:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout capa
|
|
uses: actions/checkout@v2
|
|
- name: Set up Python 3.8
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.8
|
|
- name: Install dependencies
|
|
run: pip install 'isort==5.*' black
|
|
- name: Lint with isort
|
|
run: isort --profile black --length-sort --line-width 120 -c .
|
|
- name: Lint with black
|
|
run: black -l 120 --check .
|
|
|
|
rule_linter:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout capa with rules submodule
|
|
uses: actions/checkout@v2
|
|
with:
|
|
submodules: true
|
|
- name: Set up Python 3.8
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.8
|
|
# We don't need vivisect, so we can install capa using Python3
|
|
- name: Install capa
|
|
run: pip install -e .
|
|
- name: Run rule linter
|
|
run: python scripts/lint.py rules/
|
|
|