From 9348b12cf857bb554c0d8fd00993bec8a7b6ec2d Mon Sep 17 00:00:00 2001 From: Taro Suzuki Date: Mon, 9 Mar 2026 00:33:33 +0000 Subject: [PATCH] Add CI workflow with linting Co-authored-by: pokemon918 <132939190+pokemon918@users.noreply.github.com> Co-authored-by: xfactor-toml <154992305+xfactor-toml@users.noreply.github.com> Co-authored-by: omni-omega <234262665+omni-omega@users.noreply.github.com> Co-authored-by: phantomdev0826 <218786589+phantomdev0826@users.noreply.github.com> --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..57ec85c --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1 @@ +name: CI\n\non:\n push:\n branches: [main]\n pull_request:\n branches: [main]\n\njobs:\n lint:\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v4\n - uses: actions/setup-python@v5\n with:\n python-version: '3.11'\n - run: pip install flake8\n - run: flake8 . --max-line-length=120 --exclude=venv,.git,__pycache__ \ No newline at end of file