Skip to content

Commit

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

- name: Plan Atmos Component
uses: ./
Expand All @@ -57,4 +57,4 @@ jobs:
atmos-config-path: ${{ runner.temp }}
atmos-version: 1.92.0
restore-cache: true
sha: ${{ github.sha }}
# sha: ${{ github.sha }}
8 changes: 1 addition & 7 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,17 +64,11 @@ runs:
using: "composite"
steps:
- name: Checkout
if: ${{ inputs.restore-cache == 'false' }}
uses: actions/checkout@v4
with:
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
Expand Down

0 comments on commit ef900a5

Please sign in to comment.