-
Notifications
You must be signed in to change notification settings - Fork 1
51 lines (41 loc) · 1.16 KB
/
tests.yml
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
46
47
48
49
50
51
name: Test
on:
workflow_dispatch:
pull_request:
branches:
- main
push:
branches:
- main
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 cache clear PyPI --all
poetry install --no-root
- name: Run ruff
run: |
poetry run ruff check .
- name: Run ruff format
run: |
poetry run ruff format --check .
- name: Run mypy
run: |
poetry run mypy --show-error-codes .
- name: Run tests
run: |
export QSTASH_TOKEN="${{ secrets.QSTASH_TOKEN }}"
export QSTASH_CURRENT_SIGNING_KEY="${{ secrets.QSTASH_CURRENT_SIGNING_KEY }}"
export QSTASH_NEXT_SIGNING_KEY="${{ secrets.QSTASH_NEXT_SIGNING_KEY }}"
export OPENAI_API_KEY="${{ secrets.OPENAI_API_KEY }}"
poetry run pytest