Skip to content

Refactored entire code, making fake useragent optional (#2) #11

Refactored entire code, making fake useragent optional (#2)

Refactored entire code, making fake useragent optional (#2) #11

Workflow file for this run

name: Main
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
run-quality-assurance:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.11", "3.10", "3.9"]
fail-fast: false
steps:
- name: Check out
uses: actions/checkout@v3
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: yezz123/setup-uv@v4
- name: Install dependencies
run: make install
- name: Run test
run: make test
- name: Run checks
run: make check