Skip to content

Merge pull request #10 from zeroasiccorp/rice/umi_memory_bug_fix #34

Merge pull request #10 from zeroasiccorp/rice/umi_memory_bug_fix

Merge pull request #10 from zeroasiccorp/rice/umi_memory_bug_fix #34

Workflow file for this run

name: Lint
on:
pull_request:
workflow_dispatch:
push:
branches: main
jobs:
lint_python:
name: Lint Python Code
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v6
- name: Install
run: |
python3 -m venv .venv
. .venv/bin/activate
pip install --upgrade pip
pip install .[test]
- name: Lint with Flake8
run: |
python3 -m venv .venv
. .venv/bin/activate
flake8 --statistics .