We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b55d323 commit bf8ee84Copy full SHA for bf8ee84
1 file changed
.github/workflows/basic.yml
@@ -61,6 +61,13 @@ jobs:
61
- name: Run workspace tests
62
run: cargo test --workspace --verbose
63
64
+ - name: Run examples
65
+ run: |
66
+ for example_path in oneapi-rs/examples/*.rs; do
67
+ example="$(basename "$example_path" .rs)"
68
+ cargo run -p oneapi-rs --example "$example" --verbose
69
+ done
70
+
71
- name: Generate documentation
72
run: |
73
cargo doc -p oneapi-rs --no-deps --verbose
0 commit comments