Skip to content

Missing origin and referer header causing 403 response #7

Missing origin and referer header causing 403 response

Missing origin and referer header causing 403 response #7

Workflow file for this run

name: Run unittests
on:
pull_request:
branches: [ "main", "master" ]
permissions:
contents: read
jobs:
tests:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Run tests
run: python -m unittest discover -s tests