mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-24 08:41:16 +00:00
20 lines
428 B
YAML
20 lines
428 B
YAML
name: Analyze
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
decomplint:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install python libraries
|
|
run: |
|
|
pip install -r tools/requirements.txt
|
|
|
|
- name: Lint codebase
|
|
run: |
|
|
python3 tools/decomplint/decomplint.py ISLE --module ISLE --warnfail ||
|
|
python3 tools/decomplint/decomplint.py LEGO1 --module LEGO1 --warnfail
|