isle/.github/workflows/analyze.yml
2023-12-12 14:06:53 -05:00

23 lines
487 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 ISLE
continue-on-error: true
run: |
python3 tools/decomplint/decomplint.py ISLE --module ISLE --warnfail
- name: Lint LEGO1
run: |
python3 tools/decomplint/decomplint.py LEGO1 --module LEGO1 --warnfail