Skip to content

💩 Insert bug #2

💩 Insert bug

💩 Insert bug #2

Workflow file for this run

name: tests
on: pull_request
jobs:
tests:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v4
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
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install beautifulsoup4
- name: Run unit-tests
timeout-minutes: 5
run: |
# Enable pipefail option, so if the tests fail, the job will fail as well
set -o pipefail
python .github/tests.py