We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fb59e5 commit 2db7ae5Copy full SHA for 2db7ae5
.github/workflows/rust.yml
@@ -22,7 +22,7 @@ jobs:
22
- name: Build
23
run: cargo build --verbose
24
25
- - name: Run tests
+ - name: Run tests with tokio
26
run: make test
27
28
- name: Archive test log
@@ -44,3 +44,23 @@ jobs:
44
with:
45
name: test log
46
path: /tmp/test_crossfire.log
47
+
48
+ - name: Run tests with async_std
49
+ run: make test_async_std
50
51
+ - name: Archive test log
52
+ if: ${{ failure() }}
53
+ uses: actions/upload-artifact@v4
54
+ with:
55
+ name: test log
56
+ path: /tmp/test_crossfire.log
57
58
+ - name: Run tests with async_std --releaes
59
+ run: make test_async_std_release
60
61
62
63
64
65
66
0 commit comments