Skip to content

Commit 01f3491

Browse files
committed
Add tests
1 parent 0bb99c5 commit 01f3491

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/pr_tests.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: PR Tests
2+
3+
on:
4+
pull_request:
5+
6+
env:
7+
CARGO_TERM_COLOR: always
8+
9+
jobs:
10+
tests:
11+
name: Tests
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout repository
15+
uses: actions/checkout@v4
16+
17+
- name: Set up Docker Buildx
18+
uses: docker/setup-buildx-action@v3
19+
20+
- name: Run tests with devtool
21+
env:
22+
PYTEST_ADDOPTS: "-n 2"
23+
run: |
24+
./tools/devtool -y test -- integration_tests/functional/

0 commit comments

Comments
 (0)