Skip to content

Commit

Permalink
- Add github action
Browse files Browse the repository at this point in the history
- python -m seraxinstances --check to check instances.yml syntax
- .pylint configuration
- setup.py / requirements.txt / requirements-update.txt
  • Loading branch information
dalf committed Jan 30, 2020
1 parent 798e18c commit fcde28e
Show file tree
Hide file tree
Showing 15 changed files with 880 additions and 90 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: searx-instances

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-update.txt
- name: Check
run: |
python -m searxinstances --check
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
.coverage
.vscode
.pytest_cache/

*~
__pycache__/
Expand All @@ -16,4 +14,5 @@ build/
dist/
*.egg-info/

cache
ve
Loading

0 comments on commit fcde28e

Please sign in to comment.