We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bb99c5 commit 01f3491Copy full SHA for 01f3491
1 file changed
.github/workflows/pr_tests.yml
@@ -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