chore(deps): update dependency go to v1.26.5 #192
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: Tests | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - "README.md" | |
| push: | |
| paths-ignore: | |
| - "README.md" | |
| permissions: | |
| contents: read | |
| env: | |
| # renovate: datasource=github-releases depName=jdx/mise | |
| MISE_VERSION: 2025.12.13 | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Setup Mise | |
| uses: jdx/mise-action@146a28175021df8ca24f8ee1828cc2a60f980bd5 # v3.5.1 | |
| with: | |
| version: ${{ env.MISE_VERSION }} | |
| - name: Run Build | |
| run: mise run build | |
| - name: Run Linters | |
| run: mise run lint | |
| generate: | |
| name: Generate | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Setup Mise | |
| uses: jdx/mise-action@146a28175021df8ca24f8ee1828cc2a60f980bd5 # v3.5.1 | |
| with: | |
| version: ${{ env.MISE_VERSION }} | |
| - name: Run Code Generation | |
| run: mise run generate | |
| - name: Check for differences | |
| run: | | |
| git diff --exit-code || \ | |
| (echo; echo "Unexpected difference in directories after code generation. Run 'mise run generate' command and commit."; exit 1) | |
| test: | |
| name: Terraform Provider Acceptance Tests | |
| needs: build | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 15 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # list whatever Terraform versions here you would like to support | |
| terraform: | |
| - "1.8" | |
| - "1.9" | |
| - "1.10" | |
| - "1.11" | |
| - "1.12" | |
| - "1.13" | |
| - "1.14" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Setup Mise | |
| uses: jdx/mise-action@146a28175021df8ca24f8ee1828cc2a60f980bd5 # v3.5.1 | |
| with: | |
| version: ${{ env.MISE_VERSION }} | |
| install_args: terraform@${{ matrix.terraform }} | |
| - name: Run Acceptance Tests | |
| run: mise run testacc | |
| timeout-minutes: 10 |