Skip to content

bug: Redirect URLs for Aliexpress are not working #32

bug: Redirect URLs for Aliexpress are not working

bug: Redirect URLs for Aliexpress are not working #32

Workflow file for this run

name: Run Pre-Commit Checks
on:
push:
pull_request:
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install types-PyYAML types-requests pre-commit
pre-commit install-hooks
- name: Run Pre-Commit
run: pre-commit run --all-files