2022-01-29 21:31:27 +00:00
|
|
|
name: test
|
2021-09-30 11:36:00 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- 'master'
|
2022-07-31 23:30:23 +00:00
|
|
|
paths:
|
2023-02-14 20:50:51 +00:00
|
|
|
- src/khoj/**
|
2022-07-31 23:30:23 +00:00
|
|
|
- tests/**
|
|
|
|
- config/**
|
2023-02-16 09:12:04 +00:00
|
|
|
- pyproject.toml
|
2023-02-17 18:07:59 +00:00
|
|
|
- .pre-commit-config.yml
|
2022-07-31 23:30:23 +00:00
|
|
|
- .github/workflows/test.yml
|
2021-09-30 11:36:00 +00:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'master'
|
2022-07-31 23:30:23 +00:00
|
|
|
paths:
|
2023-02-14 20:50:51 +00:00
|
|
|
- src/khoj/**
|
2022-07-31 23:30:23 +00:00
|
|
|
- tests/**
|
|
|
|
- config/**
|
2023-02-16 09:12:04 +00:00
|
|
|
- pyproject.toml
|
2023-02-17 18:07:59 +00:00
|
|
|
- .pre-commit-config.yml
|
2022-07-31 23:30:23 +00:00
|
|
|
- .github/workflows/test.yml
|
2021-09-30 11:36:00 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
2022-08-03 18:50:20 +00:00
|
|
|
name: Run Tests
|
2022-08-03 17:00:37 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-02-07 00:05:34 +00:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
python_version:
|
2023-02-07 05:57:42 +00:00
|
|
|
- '3.8'
|
|
|
|
- '3.9'
|
|
|
|
- '3.10'
|
|
|
|
steps:
|
2022-08-03 17:00:37 +00:00
|
|
|
- uses: actions/checkout@v3
|
2021-12-15 06:15:49 +00:00
|
|
|
|
2023-02-07 00:05:34 +00:00
|
|
|
- name: Set up Python
|
2022-08-03 17:00:37 +00:00
|
|
|
uses: actions/setup-python@v4
|
2021-09-30 11:36:00 +00:00
|
|
|
with:
|
2023-02-07 00:05:34 +00:00
|
|
|
python-version: ${{ matrix.python_version }}
|
2021-12-15 06:15:49 +00:00
|
|
|
|
2022-08-03 19:37:16 +00:00
|
|
|
- name: Install Dependencies
|
2022-08-03 17:00:37 +00:00
|
|
|
run: |
|
2023-01-11 19:51:16 +00:00
|
|
|
sudo apt update && sudo apt install -y libegl1
|
2022-08-03 17:00:37 +00:00
|
|
|
python -m pip install --upgrade pip
|
2022-08-03 19:37:16 +00:00
|
|
|
|
|
|
|
- name: Install Application
|
2023-02-17 18:07:59 +00:00
|
|
|
run: pip install --upgrade .[dev]
|
|
|
|
|
|
|
|
- name: Validate Application
|
|
|
|
run: pre-commit
|
2021-12-15 06:15:49 +00:00
|
|
|
|
2022-08-03 19:37:16 +00:00
|
|
|
- name: Test Application
|
2023-02-17 18:07:59 +00:00
|
|
|
run: pytest
|