File tree 5 files changed +37
-32
lines changed
5 files changed +37
-32
lines changed Original file line number Diff line number Diff line change 4
4
pull_request :
5
5
branches : [main]
6
6
types : [opened, synchronize]
7
+ paths :
8
+ - ' **/*.ex'
9
+ - ' **/*.exs'
10
+ - ' **/*.html.heex'
7
11
8
12
jobs :
9
13
style :
Original file line number Diff line number Diff line change @@ -3,9 +3,17 @@ name: Build and Test
3
3
on :
4
4
push :
5
5
branches : [main]
6
+ paths :
7
+ - ' **/*.ex'
8
+ - ' **/*.exs'
9
+ - ' **/*.html.heex'
6
10
pull_request :
7
11
branches : [main]
8
12
types : [opened, synchronize]
13
+ paths :
14
+ - ' **/*.ex'
15
+ - ' **/*.exs'
16
+ - ' **/*.html.heex'
9
17
10
18
jobs :
11
19
build :
Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ defmodule Mix.Tasks.Convert do
5
5
"""
6
6
use Mix.Task
7
7
8
+ alias CesiumLink.Links.Link
8
9
alias CesiumLink.Redirects.Redirect
9
10
alias CesiumLink.Repo
10
- alias CesiumLink.Links.Link
11
11
12
12
def run ( files ) do
13
13
case length ( files ) do
Original file line number Diff line number Diff line change @@ -99,7 +99,8 @@ defmodule CesiumLink.MixProject do
99
99
"tailwind cesium_link --minify" ,
100
100
"esbuild cesium_link --minify" ,
101
101
"phx.digest"
102
- ]
102
+ ] ,
103
+ lint: [ "credo -C default" ]
103
104
]
104
105
end
105
106
end
You can’t perform that action at this time.
0 commit comments