File tree Expand file tree Collapse file tree 2 files changed +31
-2
lines changed Expand file tree Collapse file tree 2 files changed +31
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : Linter
2
+ on :
3
+ push :
4
+ branches :
5
+ - master
6
+ pull_request :
7
+ branches :
8
+ - master
9
+ jobs :
10
+ pre-commit :
11
+ runs-on : ubuntu-latest
12
+ name : pre-commit
13
+ steps :
14
+ - uses : actions/checkout@v2
15
+ - uses : actions/setup-go@v2
16
+ with :
17
+ go-version : ' 1.16.1'
18
+ -
uses :
pre-commit/[email protected]
19
+ validate :
20
+ runs-on : ubuntu-latest
21
+ name : terraform validate
22
+ steps :
23
+ - name : Checkout
24
+ uses : actions/checkout@v2
25
+
26
+ - name : terraform validate
27
+ uses : dflook/terraform-validate@v1
28
+ with :
29
+ path : .
Original file line number Diff line number Diff line change @@ -25,8 +25,8 @@ resource "aws_ecs_task_definition" "ui_backend" {
25
25
}
26
26
}
27
27
command = [
28
- " /opt/latest/bin/python3" ,
29
- " -m" ,
28
+ " /opt/latest/bin/python3" ,
29
+ " -m" ,
30
30
" services.ui_backend_service.ui_server"
31
31
]
32
32
}
You can’t perform that action at this time.
0 commit comments