docs: Update the README title and description (#78) #181
This file contains hidden or 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: | |
branches: | |
- main | |
paths-ignore: | |
- .editorconfig | |
- .gitignore | |
- CHANGELOG.md | |
- LICENSE.md | |
- Makefile | |
- README.md | |
jobs: | |
verify: | |
name: Verify | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Terraform | |
uses: hashicorp/setup-terraform@v3 | |
with: | |
terraform_version: "1.10" | |
- name: Initialise with no backend | |
run: terraform init -backend=false | |
- name: Check formatting | |
run: terraform fmt -check -recursive | |
- name: Validate the configuration | |
run: terraform validate | |
release: | |
name: Release? | |
needs: [ verify ] | |
permissions: | |
contents: write | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Prepare a release | |
uses: googleapis/release-please-action@v4 | |
with: | |
config-file: .github/release-please-config.json | |
manifest-file: .github/release-please-manifest.json | |
token: ${{ secrets.GITHUB_TOKEN }} |