Skip to content

Commit 75a3a51

Browse files
committed
chore: Coderabbit bad recommendation
1 parent 506466c commit 75a3a51

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

.github/workflows/build-image.yaml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,5 +89,15 @@ jobs:
8989
9090
# Functional tests
9191
echo "Testing basic functionality..."
92-
docker run --rm -v "$(pwd)/tests:/workspace" -w /workspace "$IMAGE_TAG" terraform init -backend=false || echo "terraform init test passed"
93-
docker run --rm -v "$(pwd):/workspace" -w /workspace "$IMAGE_TAG" terraform fmt -check -diff || echo "terraform fmt test completed"
92+
docker run --rm \
93+
-v "$(pwd)/tests:/workspace" \
94+
-w /workspace \
95+
"$IMAGE_TAG" \
96+
terraform init -backend=false \
97+
|| echo "terraform init test passed"
98+
docker run --rm \
99+
-v "$(pwd):/workspace" \
100+
-w /workspace \
101+
"$IMAGE_TAG" \
102+
terraform fmt -check -diff \
103+
|| echo "terraform fmt test completed"

.github/workflows/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ on:
1212
- '**/*.sh'
1313
- Dockerfile*
1414
- .pre-commit-hooks.yaml
15-
paths-ignore:
16-
- tests/**
15+
- '!tests/**'
1716

1817

1918
jobs:

0 commit comments

Comments
 (0)