-
Notifications
You must be signed in to change notification settings - Fork 2
45 lines (36 loc) · 1.04 KB
/
test.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Test
on:
workflow_dispatch:
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python3 -
- name: Set up Poetry environment
run: poetry install --no-root
- name: Run mypy
run: |
poetry run mypy --show-error-codes --install-types --non-interactive .
- name: Run ruff
run: |
poetry run ruff format --check .
poetry run ruff check .
- name: Run tests
run: |
export URL="${{secrets.URL}}"
export TOKEN="${{secrets.TOKEN}}"
export EMBEDDING_URL="${{secrets.EMBEDDING_URL}}"
export EMBEDDING_TOKEN="${{secrets.EMBEDDING_TOKEN}}"
poetry add --dev pytest
poetry install
poetry run pytest