Skip to content

Commit 903f52f

Browse files
Merge pull request #47 from devind-team/develop
feat: add date in theme message
2 parents ac96f58 + d27c2dd commit 903f52f

1 file changed

Lines changed: 26 additions & 7 deletions

File tree

.github/workflows/linter_pull_request.yml

Lines changed: 26 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,35 @@ jobs:
88
lint:
99
name: Linter pull request
1010
runs-on: ubuntu-latest
11+
defaults:
12+
run:
13+
working-directory: .
1114
steps:
1215
- name: Checkout Code
1316
uses: actions/checkout@v3
1417
with:
1518
fetch-depth: 0
19+
- name: Install Python
20+
uses: actions/setup-python@v4
21+
with:
22+
python-version: '3.10'
23+
check-latest: true
24+
- name: Setup Poetry
25+
uses: Gr1N/setup-poetry@v7
26+
- name: Install dependencies
27+
run: poetry install
1628
- name: Lint python code
17-
uses: github/super-linter@v4
18-
env:
19-
VALIDATE_ALL_CODEBASE: false
20-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21-
DEFAULT_BRANCH: main
22-
PYTHON_FLAKE8_CONFIG_FILE: .flake8
23-
VALIDATE_PYTHON_FLAKE8: true
29+
run: poetry run flake8
30+
# steps:
31+
# - name: Checkout Code
32+
# uses: actions/checkout@v3
33+
# with:
34+
# fetch-depth: 0
35+
# - name: Lint python code
36+
# uses: github/super-linter@v4
37+
# env:
38+
# VALIDATE_ALL_CODEBASE: false
39+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
40+
# DEFAULT_BRANCH: main
41+
# PYTHON_FLAKE8_CONFIG_FILE: .flake8
42+
# VALIDATE_PYTHON_FLAKE8: true

0 commit comments

Comments
 (0)