-
Notifications
You must be signed in to change notification settings - Fork 130
49 lines (38 loc) · 1.04 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
name: Run GoTest
on:
pull_request:
branches:
- main
push:
branches:
- main
concurrency:
group: test-tests-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install System Dependencies
run: sudo apt-get install -y pkg-config gcc libseccomp-dev
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.20.6
- name: Install dependencies
run: go mod tidy
- name: Compile library
run: bash ./build/build_amd64.sh
- name: Setup Python3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install Python dependencies
run: pip install httpx requests jinja2
- name: Run Intgeration tests
run: sudo go test -v github.com/langgenius/dify-sandbox/tests/integration_tests/...
env:
PYTHON_PATH: /usr/bin/python3.10