mirror of
https://github.com/searxng/searxng.git
synced 2024-11-19 02:40:11 +01:00
GitHub workflows: run checker on Friday
This commit is contained in:
parent
b56449d3fa
commit
08e7c37a35
31
.github/workflows/checker.yml
vendored
Normal file
31
.github/workflows/checker.yml
vendored
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
name: "Checker"
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: "0 4 * * 5"
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
checker:
|
||||||
|
name: Checker
|
||||||
|
runs-on: ubuntu-22.04
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Install Ubuntu packages
|
||||||
|
run: |
|
||||||
|
sudo ./utils/searxng.sh install packages
|
||||||
|
|
||||||
|
- name: Set up Python
|
||||||
|
uses: actions/setup-python@v5
|
||||||
|
with:
|
||||||
|
python-version: '3.11'
|
||||||
|
architecture: 'x64'
|
||||||
|
|
||||||
|
- name: Install Python dependencies
|
||||||
|
run: |
|
||||||
|
make V=1 install
|
||||||
|
|
||||||
|
- name: Checker
|
||||||
|
run: |
|
||||||
|
make search.checker
|
Loading…
Reference in New Issue
Block a user