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