We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19dce68 commit a70e058Copy full SHA for a70e058
.github/workflows/black.yaml
@@ -0,0 +1,14 @@
1
+name: Lint
2
+on:
3
+ - push
4
+ - pull_request
5
+jobs:
6
+ python-lint:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ - uses: psf/black@stable
11
+ with:
12
+ options: "--check --verbose"
13
+ src: "./"
14
+ version: "~= 22.0"
.github/workflows/terraform.yaml
@@ -0,0 +1,16 @@
+name: Terraform validation
+ terraform:
+ - uses: hashicorp/setup-terraform@v3
+ terraform_version: "1.5.7" # Cloud Shell version
+
+ - name: terraform fmt
15
+ id: fmt
16
+ run: terraform fmt -check -recursive
.gitignore
@@ -0,0 +1,2 @@
+# IDEs
+*.code-workspace
0 commit comments