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 c1460d1 commit f05e633Copy full SHA for f05e633
.github/workflows/test.yml
@@ -1,10 +1,25 @@
1
on: push
2
jobs:
3
test:
4
+ strategy:
5
+ matrix:
6
+ package:
7
+ - jtd_codegen_cli
8
+ - jtd_codegen_target_csharp_system_text
9
+ - jtd_codegen_target_go
10
+ - jtd_codegen_target_java_jackson
11
+ - jtd_codegen_target_python
12
+ - jtd_codegen_target_ruby
13
+ - jtd_codegen_target_ruby_sig
14
+ - jtd_codegen_target_rust
15
+ - jtd_codegen_target_typescript
16
+ - jtd_codegen_test
17
runs-on: ubuntu-latest
18
steps:
19
- uses: actions/checkout@v2
20
- uses: actions-rs/toolchain@v1
21
with:
22
toolchain: stable
- - run: cargo test
23
+ - run: cargo test --package=$PACKAGE
24
+ env:
25
+ PACKAGE: ${{ matrix.package }}
0 commit comments