-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add integration tests workflow for self hosted
- Loading branch information
1 parent
0eed734
commit 1ad036f
Showing
4 changed files
with
48 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: integration | ||
on: | ||
pull_request: | ||
paths: | ||
- pkg/** | ||
- integration/self_hosted/** | ||
- main.go | ||
- go.mod | ||
schedule: | ||
- cron: 1 11 * * 0 | ||
|
||
jobs: | ||
self-hosted: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Docker Compose Up | ||
run: docker compose up --build -d | ||
|
||
- name: Terraform Init | ||
run: | | ||
docker exec provider sh -c "cd self_hosted && terraform init" | ||
- name: Terraform Apply | ||
run: | | ||
docker exec provider sh -c "cd self_hosted && terraform apply -auto-approve -compact-warnings" | ||
- name: Terraform Plan | ||
run: | | ||
docker exec provider sh -c "cd self_hosted && terraform plan -detailed-exitcode" | ||
- name: Terraform Destroy | ||
run: | | ||
docker exec provider sh -c "cd self_hosted && terraform destroy -auto-approve -compact-warnings" | ||
- name: Docker Compose Down | ||
run: docker compose down |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters