mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 15:37:55 -05:00
b14116cc93
* Create common print_diff function * Add pylint and black * Fix linting, move classes to utils * Add black/pylint to github actions * Fix linting * Move Bin and SymInfo into their own files * Split out format * Tidy up workdlows and pip, add readme * Lint tests, add tests to readme
19 lines
422 B
YAML
19 lines
422 B
YAML
name: Check order
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
checkorder:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install python libraries
|
|
run: |
|
|
pip install -r tools/requirements.txt
|
|
|
|
- name: Run checkorder.py
|
|
run: |
|
|
python3 tools/checkorder/checkorder.py --verbose --enforce ISLE
|
|
python3 tools/checkorder/checkorder.py --verbose --enforce LEGO1
|