You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
run: echo "name=$(python -c \"with open('pyproject.toml') as f: lines = f.readlines(); for line in lines: if line.strip().startswith('name ='): print(line.strip().split(' = ')[1].strip('\\\"')); break\")" >> $GITHUB_OUTPUT
33
33
- name: Configure Poetry
34
34
run: |
35
35
if [ "${{ steps.package.outputs.name }}" == "polygon-api-client" ]; then
@@ -42,6 +42,8 @@ jobs:
42
42
fi
43
43
- name: Install deps
44
44
run: poetry install
45
+
- name: Run tests
46
+
run: poetry run make test # Assuming 'make test' from repo; adjust if different (e.g., poetry run pytest)
0 commit comments