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 2369e29Copy full SHA for 2369e29
.github/workflows/daily-build.yml
@@ -27,10 +27,10 @@ jobs:
27
with:
28
ref: ${{ github.ref }}
29
30
- - name: Setup Python environment
+ - name: Setup environment
31
run: |
32
+ echo "${HOME}/.asdf/bin" >> $GITHUB_PATH
33
poetry install --no-root
- source $(poetry env info --path)/bin/activate
34
35
- name: Run Linting
36
run: make lint
@@ -39,7 +39,13 @@ jobs:
39
run: make test
40
41
- name: Build Project
42
- run: make build
+ run: |
43
+ echo "PATH: ${PATH}"
44
+ echo "HOME: ${HOME}"
45
+ echo "python: $(which python)"
46
+ echo "asdf: $(which asdf)"
47
+ echo "/usr/local/bin: $(ls -la /usr/local/bin)"
48
+ make build
49
50
- name: Configure Management Credentials
51
uses: aws-actions/configure-aws-credentials@v4
0 commit comments