Skip to content

Commit 019f8a6

Browse files
committed
1 parent 9117235 commit 019f8a6

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

.gitea/workflows/test.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: 'Setup Terraform'
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
jobs:
10+
terraform-versions:
11+
name: 'Terraform Versions'
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: https://github.com/actions/checkout@v3
15+
- uses: https://github.com/hashicorp/setup-terraform@v2
16+
17+
- name: Terraform fmt
18+
id: fmt
19+
run: terraform fmt -check
20+
continue-on-error: true
21+
22+
- name: Terraform Init
23+
id: init
24+
run: terraform init
25+
26+
- name: Terraform Validate
27+
id: validate
28+
run: terraform validate -no-color

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# terraform-provider-gitea
2-
Terraform Gitea Provider
32

3+
Terraform Gitea Provider

0 commit comments

Comments
 (0)