File tree Expand file tree Collapse file tree 1 file changed +26
-1
lines changed Expand file tree Collapse file tree 1 file changed +26
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,31 @@ concurrency:
8
8
9
9
jobs :
10
10
11
+ run-linter :
12
+ runs-on : ubuntu-20.04
13
+ strategy :
14
+ matrix :
15
+ python-version : [3.8.6]
16
+
17
+ steps :
18
+ - name : Checkout this repository
19
+ uses : actions/checkout@v3
20
+ with :
21
+ lfs : true
22
+
23
+ - name : Checkout actions repository
24
+ uses : actions/checkout@v3
25
+ with :
26
+ repository : Exabyte-io/actions
27
+ token : ${{ secrets.BOT_GITHUB_TOKEN }}
28
+ path : actions
29
+ ref : feat/SOF-6640
30
+
31
+ - name : Run ruff linter
32
+ uses : ./actions/py/lint
33
+ with :
34
+ python-version : ${{ matrix.python-version }}
35
+
11
36
run-tests :
12
37
runs-on : ubuntu-20.04
13
38
strategy :
47
72
48
73
49
74
publish :
50
- needs : run-tests
75
+ needs : [ run-linter, run- tests]
51
76
runs-on : ubuntu-latest
52
77
if : github.ref_name == 'dev'
53
78
You can’t perform that action at this time.
0 commit comments