Skip to content

Update requirements-dev.txt (#177) #309

Update requirements-dev.txt (#177)

Update requirements-dev.txt (#177) #309

Workflow file for this run

name: searx-space application
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
name: Python ${{ matrix.python-version }} QA
steps:
- uses: actions/checkout@v1
- name: Install Ubuntu packages
run: sudo apt-get install -y firefox wget git build-essential python3-dev libxslt-dev zlib1g-dev libffi-dev libssl-dev libyaml-dev
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install dev dependencies
run: |
pip install -r requirements-dev.txt
mkdir -p "$GITHUB_WORKSPACE/bin"
utils/install-geckodriver "$GITHUB_WORKSPACE/bin"
- name: QA
run: |
export PATH=$GITHUB_WORKSPACE/bin:$PATH
make qa