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
|
|
|
|
2024-10-26 08:57:47 -04:00
|
|
|
- uses: actions/setup-python@v5
|
|
|
|
with:
|
|
|
|
python-version: '3.12'
|
|
|
|
|
2023-12-12 14:27:17 -05:00
|
|
|
- name: Install python libraries
|
|
|
|
run: |
|
2024-10-26 08:57:47 -04:00
|
|
|
pip install -r tools/requirements.txt
|
2023-12-12 14:27:17 -05:00
|
|
|
|
|
|
|
- name: Run decomplint.py
|
|
|
|
run: |
|
2024-10-26 08:57:47 -04:00
|
|
|
reccmp-decomplint ${{ matrix.who }} --module ${{ matrix.who }} --warnfail
|