Skip to content

Commit 062d1e8

Browse files
committed
[NRL-774] WIP add some debug to linter step
1 parent 573561c commit 062d1e8

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.github/workflows/persistent-environment.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ jobs:
3535
with:
3636
path: ~/.asdf
3737
key: ${{ runner.os }}-asdf-${{ hashFiles('**/.tool-versions') }}
38-
restore-keys: |
39-
${{ runner.os }}-asdf-
38+
fail-on-cache-miss: false
4039

4140
- name: Install asdf
4241
uses: asdf-vm/actions/[email protected]
@@ -52,7 +51,18 @@ jobs:
5251
source $(poetry env info --path)/bin/activate
5352
5453
- name: Run Linting
55-
run: make lint
54+
run: |
55+
which asdf
56+
which terraform
57+
#env
58+
#cat .tool-versions
59+
#ls -ltr ~/.asdf/installs/terraform
60+
#asdf list terraform
61+
#ldd ~/.asdf/installs/terraform/1.9.8/bin/terraform
62+
#file ~/.asdf/installs/terraform/1.9.8/bin/terraform
63+
ls -ltr ~/.asdf/installs/terraform/1.9.8/bin
64+
~/.asdf/installs/terraform/1.9.8/bin/terraform --version
65+
make lint
5666
5767
- name: Run Unit Tests
5868
run: make test

0 commit comments

Comments
 (0)