2023-12-12 14:27:17 -05:00
|
|
|
name: Analyze
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
decomplint-isle:
|
2024-02-07 06:11:45 -05:00
|
|
|
name: '${{ matrix.who }} annotations'
|
2023-12-12 14:27:17 -05:00
|
|
|
runs-on: ubuntu-latest
|
2024-02-07 06:11:45 -05:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
who:
|
|
|
|
- CONFIG
|
|
|
|
- ISLE
|
|
|
|
- LEGO1
|
2023-12-12 14:27:17 -05:00
|
|
|
|
|
|
|
steps:
|
2024-01-24 21:16:29 -05:00
|
|
|
- uses: actions/checkout@v4
|
2023-12-12 14:27:17 -05:00
|
|
|
|
|
|
|
- name: Install python libraries
|
|
|
|
run: |
|
2024-02-07 06:11:45 -05:00
|
|
|
python -m pip install -r tools/requirements.txt
|
2023-12-12 14:27:17 -05:00
|
|
|
|
|
|
|
- name: Run decomplint.py
|
|
|
|
run: |
|
2024-02-07 06:11:45 -05:00
|
|
|
tools/decomplint/decomplint.py ${{ matrix.who }} --module ${{ matrix.who }} --warnfail
|