Skip to content

Commit 8253f53

Browse files
feyclaude
andcommitted
ci: add CI workflow
Gives the github-actions dependabot ecosystem workflow files to track and adds basic checks on push and pull request. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 3c0dff1 commit 8253f53

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: CI
2+
3+
on:
4+
- push
5+
- pull_request
6+
7+
jobs:
8+
validate:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v6
12+
- uses: hashicorp/setup-terraform@v3
13+
- name: Check formatting
14+
run: terraform fmt -check
15+
- name: Init
16+
run: terraform init -backend=false
17+
- name: Validate
18+
run: terraform validate

0 commit comments

Comments
 (0)