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 ee9b9bb commit 29e4351Copy full SHA for 29e4351
.github/CODEOWNERS
@@ -0,0 +1 @@
1
+* @Pararius/devops
.github/workflows/ci.yaml
@@ -0,0 +1,25 @@
+---
2
+name: Continuous Integration
3
+
4
+on:
5
+ pull_request:
6
7
+jobs:
8
+ check-formatting:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v2
12
13
+ - name: Check formatting
14
+ run: terraform fmt -check
15
16
+ validate-module:
17
18
19
20
21
+ - name: Run terraform init
22
+ run: terraform init
23
24
+ - name: Validate module
25
+ run: terraform validate
0 commit comments