2023-12-12 19:27:17 +00:00
|
|
|
name: Analyze
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
decomplint-isle:
|
2024-02-07 11:11:45 +00:00
|
|
|
name: '${{ matrix.who }} annotations'
|
2023-12-12 19:27:17 +00:00
|
|
|
runs-on: ubuntu-latest
|
2024-02-07 11:11:45 +00:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
who:
|
|
|
|
- CONFIG
|
|
|
|
- ISLE
|
|
|
|
- LEGO1
|
2023-12-12 19:27:17 +00:00
|
|
|
|
|
|
|
steps:
|
2024-01-25 02:16:29 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-12-12 19:27:17 +00:00
|
|
|
|
2024-10-26 12:57:47 +00:00
|
|
|
- uses: actions/setup-python@v5
|
|
|
|
with:
|
|
|
|
python-version: '3.12'
|
|
|
|
|
2023-12-12 19:27:17 +00:00
|
|
|
- name: Install python libraries
|
|
|
|
run: |
|
2024-10-26 12:57:47 +00:00
|
|
|
pip install -r tools/requirements.txt
|
2023-12-12 19:27:17 +00:00
|
|
|
|
|
|
|
- name: Run decomplint.py
|
|
|
|
run: |
|
2024-10-26 12:57:47 +00:00
|
|
|
reccmp-decomplint ${{ matrix.who }} --module ${{ matrix.who }} --warnfail
|