Skip to content

Commit

Permalink
👷 introduce linter as CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Shion1305 committed Jan 27, 2024
1 parent a405d19 commit ee2bd8c
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Lint with flake8
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: 3.10
- name: Install dependencies
run: |
python -m pip install flake8
- name: Lint with flake8
run: |
make lint

0 comments on commit ee2bd8c

Please sign in to comment.