Skip to content

Grouped utilities into the utils.py package #15

Grouped utilities into the utils.py package

Grouped utilities into the utils.py package #15

name: Linting for asm.py
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Lint with flake8
run: |
cd src
flake8 asm.py --max-line-length 120