Skip to content

Commit

Permalink
test: pipeline
Browse files Browse the repository at this point in the history
add branch for pipeline test
  • Loading branch information
jlangy committed Oct 29, 2024
1 parent ef45850 commit 2ef4d9d
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/terraform.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,22 @@ jobs:
- uses: hmarr/debug-action@v3
- uses: actions/checkout@v4

- name: Setup Tools
uses: ./.github/actions/setup-tools
- name: Install asdf
uses: asdf-vm/actions/setup@v3

- name: Cache tools
uses: actions/cache@v4
with:
path: /home/runner/.asdf
key: ${{ runner.os }}-${{ hashFiles('**/.tool-versions') }}

- name: Install required tools
run: |
cat .tool-versions | cut -f 1 -d ' ' | xargs -n 1 asdf plugin-add || true
asdf plugin-update --all
asdf install
asdf reshim
shell: bash

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
Expand Down

0 comments on commit 2ef4d9d

Please sign in to comment.