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
with: # Use deploy key to ensure pushed change trigger checks as well : https://github.com/peter-evans/create-pull-request/blob/master/docs/concepts-guidelines.md#workarounds-to-trigger-further-workflow-runs
14
+
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
15
+
- name: Set up Python
16
+
uses: actions/setup-python@v5
17
+
with:
18
+
python-version: "3.8"
19
+
- name: Install dependencies
20
+
run: |
21
+
python -m pip install --upgrade pip
22
+
pip install beautifulsoup4
23
+
- name: Run unit-tests
24
+
timeout-minutes: 5
25
+
run: |
26
+
# Enable pipefail option, so if the tests fail, the job will fail as well
0 commit comments