Skip to content

Commit d91e290

Browse files
committed
CI Github Action workflow.
1 parent a9eda0a commit d91e290

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/lint.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI
2+
on: push
3+
jobs:
4+
code-quality:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Checkout code
8+
uses: actions/checkout@v3
9+
- name: Setup Python
10+
uses: actions/setup-python@v5
11+
with:
12+
python-version: '3.11'
13+
- name: Install Dependencies
14+
run: |
15+
pip install pyflakes
16+
- name: Pyflakes
17+
run: pyflakes .

0 commit comments

Comments
 (0)