Skip to content

Commit b55db2a

Browse files
workflow
1 parent b8398a3 commit b55db2a

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/lint.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Liny Python Code
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
8+
push:
9+
branches:
10+
- master
11+
12+
workflow_dispatch:
13+
14+
jobs:
15+
lint:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@v4
19+
- uses: actions/setup-python@v5
20+
with:
21+
python-version: "3.13"
22+
cache: "pip"
23+

0 commit comments

Comments
 (0)