forked from letsql/letsql
-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (55 loc) · 1.59 KB
/
ci-test-examples.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: ci-test-examples
on:
push:
# Skip the backend suite if all changes are docs
paths-ignore:
- "docs/**"
- "**/*.md"
- "**/*.qmd"
- "*.md"
- "codecov.yml"
- ".envrc"
branches:
- main
- master
tags:
- '*'
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
linux:
runs-on: ubuntu-latest
strategy:
matrix:
target: ["x86_64"]
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- uses: extractions/setup-just@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: download test data
run: just download-data
- name: Rust latest
run: rustup update
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Poetry install
run: poetry install --extras="examples"
working-directory: ${{ github.workspace }}
- name: maturin develop
run: poetry run maturin develop
working-directory: ${{ github.workspace }}
- name: start services
run: docker compose up --build --wait
- name: poetry pytest
run: poetry run pytest --import-mode=importlib python/letsql/tests/test_examples.py -v
working-directory: ${{ github.workspace }}
env:
POSTGRES_PASSWORD: ${{ secrets.POSTGRES_GH_PASSWORD }}
POSTGRES_USER: ${{ secrets.POSTGRES_GH_USER }}
POSTGRES_HOST: ${{ secrets.POSTGRES_GH_HOST }}
POSTGRES_PORT: ${{ secrets.POSTGRES_GH_PORT }}
POSTGRES_DATABASE: ${{ secrets.POSTGRES_GH_DATABASE }}