Skip to content

Commit

Permalink
Create lint.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MohamedNasser8 committed Jun 4, 2024
1 parent 973746f commit c6c3e42
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/lent.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Lint Code

on: [push, pull_request]

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: pip install flake8
- name: Lint with flake8
run: flake8 .

0 comments on commit c6c3e42

Please sign in to comment.