Skip to content
This repository has been archived by the owner on Aug 31, 2024. It is now read-only.

Update readme.md

Update readme.md #58

Workflow file for this run

name: Check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install dependencies
run: python -m pip install flake8
- name: Lint source
run: make lint