We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbdc985 commit 8099118Copy full SHA for 8099118
.github/workflows/daily-build.yml
@@ -27,10 +27,11 @@ jobs:
27
with:
28
ref: ${{ github.ref }}
29
30
- - name: Setup Python environment
+ - name: Setup environment
31
run: |
32
poetry install --no-root
33
source $(poetry env info --path)/bin/activate
34
+ source ${HOME}/.asdf/asdf.sh
35
36
- name: Run Linting
37
run: make lint
@@ -39,7 +40,13 @@ jobs:
39
40
run: make test
41
42
- name: Build Project
- run: make build
43
+ run: |
44
+ echo "PATH: ${PATH}"
45
+ echo "HOME: ${HOME}"
46
+ echo "python: $(which python)"
47
+ echo "asdf: $(which asdf)"
48
+ echo "/usr/local/bin: $(ls -la /usr/local/bin)"
49
+ make build
50
51
- name: Configure Management Credentials
52
uses: aws-actions/configure-aws-credentials@v4
0 commit comments