Skip to content

Commit

Permalink
Update actions (#1275)
Browse files Browse the repository at this point in the history
* Update analyze action

* Update build action

* Update format action

* Update legobin action

* Update naming action
  • Loading branch information
larziwau authored Dec 25, 2024
1 parent 0f338a8 commit 457300d
Show file tree
Hide file tree
Showing 5 changed files with 253 additions and 229 deletions.
27 changes: 16 additions & 11 deletions .github/workflows/analyze.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Analyze

on: [push, pull_request]
on:
push:
pull_request:
workflow_dispatch:

jobs:
decomplint-isle:
Expand All @@ -15,16 +18,18 @@ jobs:
- LEGO1

steps:
- uses: actions/checkout@v4
- name: Checkout repository
uses: actions/checkout@v4

- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.13'

- name: Install python libraries
run: |
pip install -r tools/requirements.txt
- name: Setup Python modules
run: |
pip install -r tools/requirements.txt
- name: Run decomplint.py
run: |
reccmp-decomplint ${{ matrix.who }} --module ${{ matrix.who }} --warnfail
- name: Run decomplint.py
run: |
reccmp-decomplint ${{ matrix.who }} --module ${{ matrix.who }} --warnfail
Loading

0 comments on commit 457300d

Please sign in to comment.