Skip to content
This repository was archived by the owner on Nov 26, 2024. It is now read-only.

Commit e1cf529

Browse files
committed
Add basic CI
1 parent fb683df commit e1cf529

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: ci
2+
on:
3+
pull_request:
4+
push:
5+
branches:
6+
- master
7+
schedule:
8+
- cron: "0 0 * * *"
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
- name: Set up Terraform
15+
uses: hashicorp/setup-terraform@v1
16+
with:
17+
terraform_wrapper: false
18+
- name: Lint Terraform
19+
run: |
20+
terraform fmt -recursive -check

0 commit comments

Comments
 (0)