Bump gitpython from 3.1.37 to 3.1.40 #306
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |