mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
33 lines
667 B
YAML
33 lines
667 B
YAML
|
name: Analyze
|
||
|
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
jobs:
|
||
|
decomplint-isle:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
|
||
|
- name: Install python libraries
|
||
|
run: |
|
||
|
pip install -r tools/requirements.txt
|
||
|
|
||
|
- name: Run decomplint.py
|
||
|
run: |
|
||
|
python3 tools/decomplint/decomplint.py ISLE --module ISLE --warnfail
|
||
|
|
||
|
decomplint-lego1:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
|
||
|
- name: Install python libraries
|
||
|
run: |
|
||
|
pip install -r tools/requirements.txt
|
||
|
|
||
|
- name: Run decomplint.py
|
||
|
run: |
|
||
|
python3 tools/decomplint/decomplint.py LEGO1 --module LEGO1 --warnfail
|