@@ -52,8 +52,12 @@ Example `pyproject.toml` and `.flake8` files for linting this repository are inc
52
52
53
53
#### Call the Action with a workflow
54
54
55
+ First check out the repository with ` github/checkout ` of a supported version, so the code is available to the workflow.
56
+
57
+ The simplest use is to use just one linter at a time:
58
+
55
59
``` yaml
56
- use : advanced-security/python-lint-code-scanning-action@v1
60
+ uses : advanced-security/python-lint-code-scanning-action@v1
57
61
with :
58
62
linter : flake8
59
63
` ` `
68
72
matrix :
69
73
linter : [flake8, pylint, ruff, mypy, pytype, pyright, fixit, pyre]
70
74
steps :
71
- - use : advanced-security/python-lint-code-scanning-action@v1
75
+ - uses : advanced-security/python-lint-code-scanning-action@v1
72
76
with :
73
77
linter : ${{ matrix.linter }}
74
78
` ` `
84
88
matrix :
85
89
python-version : [3.7, 3.8, 3.9, 3.10, 3.11]
86
90
steps :
87
- - use : advanced-security/python-lint-code-scanning-action@v1
91
+ - uses : advanced-security/python-lint-code-scanning-action@v1
88
92
with :
89
93
linter : flake8
90
94
python-version : ${{ matrix.python-version }}
@@ -100,7 +104,7 @@ jobs:
100
104
runs-on : ubuntu-latest
101
105
steps :
102
106
- run : python3 -mpip install flake8-bugbear
103
- - use : advanced-security/python-lint-code-scanning-action@v1
107
+ - uses : advanced-security/python-lint-code-scanning-action@v1
104
108
with :
105
109
linter : flake8
106
110
` ` `
@@ -114,7 +118,7 @@ jobs:
114
118
lint :
115
119
runs-on : ubuntu-latest
116
120
steps :
117
- - use : advanced-security/python-lint-code-scanning-action@v1
121
+ - uses : advanced-security/python-lint-code-scanning-action@v1
118
122
with :
119
123
linter : ruff
120
124
ruff-version : " 0.0.257"
0 commit comments