Update module github.com/charmbracelet/lipgloss to v1 - autoclosed #485
Workflow file for this run
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: Run Tests | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| paths-ignore: | |
| - "README.md" | |
| release: | |
| types: [created] | |
| workflow_dispatch: | |
| permissions: | |
| id-token: write # This is required for requesting the JWT for OIDC | |
| contents: read # This is required for actions/checkout | |
| jobs: | |
| test: | |
| name: Run Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: "./go.mod" | |
| id: go | |
| - name: Setup Terraform | |
| uses: hashicorp/setup-terraform@v3 | |
| with: | |
| terraform_wrapper: false | |
| - name: Setup atmos | |
| uses: cloudposse/github-action-setup-atmos@v2 | |
| with: | |
| install-wrapper: false | |
| # TODO: Remove this once the issue is fixed https://github.com/cloudposse/atmos/issues/1064 | |
| atmos-version: 1.161.0 | |
| - name: Get dependencies | |
| run: go mod download | |
| - name: Configure AWS credentials | |
| uses: aws-actions/configure-aws-credentials@v4 | |
| with: | |
| role-to-assume: arn:aws:iam::799847381734:role/cptest-test-gbl-sandbox-tester | |
| role-session-name: githubaction-test-repo-test-helpers | |
| aws-region: us-east-2 | |
| - name: Run tests | |
| run: | | |
| go test ./... |