Terraform docs (#22) #73
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
name: CI | |
on: | |
push: | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: Build and Setup | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Build | |
uses: ./.github/actions/ci/build | |
lint: | |
name: Run Linter | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Run Linter | |
uses: ./.github/actions/ci/lint | |
leaks: | |
name: Check Leaks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Check Leaks | |
uses: ./.github/actions/ci/leaks | |
with: | |
gitleaks_license: ${{ secrets.GITLEAKS_LICENSE }} |