Skip to content

Commit 940a63f

Browse files
committed
working on check.yml
1 parent 7495fe6 commit 940a63f

File tree

1 file changed

+37
-1
lines changed

1 file changed

+37
-1
lines changed

.github/workflows/flake8-workfow.yaml

+37-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,40 @@ jobs:
2222
pip install flake8
2323
- name: run flake8
2424
run: |
25-
python -m flake8 --filename=./project.toml
25+
python -m flake8 --filename=./pyproject.toml
26+
27+
#---
28+
#
29+
#name: check
30+
#
31+
#on: push
32+
#
33+
#jobs:
34+
# flake8:
35+
# runs-on: ubuntu-latest
36+
# steps:
37+
# - name: Setup Python
38+
# uses: actions/setup-python@v1
39+
# with:
40+
# python-version: 3.11.9
41+
# architecture: x64
42+
# - name: Checkout PyTorch
43+
# uses: actions/checkout@master
44+
# - name: Install flake8
45+
# run: pip install flake8
46+
# - name: Run flake8
47+
# run: python -m flake8 --filename=pyproject.toml
48+
# mypy:
49+
# runs-on: ubuntu-latest
50+
# steps:
51+
# - name: Setup Python
52+
# uses: actions/setup-python@v1
53+
# with:
54+
# python-version: 3.11.9
55+
# architecture: x64
56+
# - name: Checkout
57+
# uses: actions/checkout@v1
58+
# - name: Install mypy
59+
# run: pip install mypy
60+
# - name: Run mypy
61+
# run: python -m mypy -p src --ignore-missing-imports --config-file=pyproject.toml

0 commit comments

Comments
 (0)