Skip to content

Commit

Permalink
Fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jamengual committed Oct 21, 2024
1 parent a57d7ff commit cea520e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ jobs:
done
cat ./tests/terraform/stacks/catalog/foobar.yaml
- name: Cache atmos files
uses: actions/cache@v4
with:
path: ./
key: atmos-${{ github.sha }}

- name: Plan Atmos Component
uses: ./
with:
Expand Down
7 changes: 7 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,13 @@ runs:
ref: ${{ inputs.sha }}
clean: ${{ inputs.restore-cache != 'true' }}

- name: Restore cache
if: ${{ inputs.restore-cache == 'true' }}
uses: actions/cache/restore@v4
with:
path: ./
key: atmos-${{ inputs.sha }}

- name: Set atmos cli config path vars
shell: bash
run: |-
Expand Down

0 comments on commit cea520e

Please sign in to comment.