Skip to content

Doc: Update install instructions #94

Doc: Update install instructions

Doc: Update install instructions #94

Workflow file for this run

name: Lint source code
on: [push, pull_request]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install
run: |
sudo apt-get install python3-pip
pip3 install flake8
- name: Run linter
run: |
flake8 python/ --max-line-length 100