Skip to content

Commit 2db7ae5

Browse files
committed
github: Run additional tests with async_std
1 parent 3fb59e5 commit 2db7ae5

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

.github/workflows/rust.yml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Build
2323
run: cargo build --verbose
2424

25-
- name: Run tests
25+
- name: Run tests with tokio
2626
run: make test
2727

2828
- name: Archive test log
@@ -44,3 +44,23 @@ jobs:
4444
with:
4545
name: test log
4646
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+
- name: Archive test log
62+
if: ${{ failure() }}
63+
uses: actions/upload-artifact@v4
64+
with:
65+
name: test log
66+
path: /tmp/test_crossfire.log

0 commit comments

Comments
 (0)