Skip to content

Add GitHub Actions CI workflow for linting #1

Add GitHub Actions CI workflow for linting

Add GitHub Actions CI workflow for linting #1

Workflow file for this run

name: Python CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install flake8
run: pip install flake8
- name: Run lint
run: flake8 . || true