We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b17f1c commit 703cfe9Copy full SHA for 703cfe9
.github/workflows/python_style_checks.yml
@@ -25,6 +25,10 @@ jobs:
25
# The type of runner that the job will run on
26
runs-on: ubuntu-latest
27
28
+ strategy:
29
+ matrix:
30
+ python-version: [3.9]
31
+
32
# Steps represent a sequence of tasks that will be executed as part of the job
33
steps:
34
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
@@ -33,7 +37,7 @@ jobs:
37
- uses: actions/setup-python@v2
38
35
39
# Run black code formatter
36
- - uses: psf/black@21.4b2
40
+ - uses: psf/black@stable
41
with:
42
args: ". --check"
43
@@ -42,7 +46,7 @@ jobs:
46
47
strategy:
44
48
matrix:
45
- python-version: [3.7]
49
50
51
52
- uses: actions/checkout@v2
0 commit comments