Skip to content

ci: updated Makefile and used for the lint action #38

ci: updated Makefile and used for the lint action

ci: updated Makefile and used for the lint action #38

Workflow file for this run

name: 'lint'
on:
push:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: pip install pycodestyle pylint
- name: Run linters
run: make lint