We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e72b655 commit e39ec6cCopy full SHA for e39ec6c
.github/workflows/pipeline.yml
@@ -1,4 +1,4 @@
1
-name: terraform
+name: Terraform
2
on: [push]
3
jobs:
4
check-format:
@@ -34,3 +34,17 @@ jobs:
34
- name: Terraform Plan (Mock)
35
run: terraform plan
36
working-directory: examples/test
37
+
38
+ infracost:
39
+ runs-on: ubuntu-latest
40
+ name: Show infracost diff
41
+ steps:
42
+ - name: Check out repository
43
+ uses: actions/checkout@v2
44
+ - name: Run infracost diff
45
+ uses: infracost/infracost-gh-action@master
46
+ env:
47
+ INFRACOST_API_KEY: ${{ secrets.INFRACOST_API_KEY }}
48
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
49
+ with:
50
+ path: examples/test
0 commit comments