Build all packages in GH workflow
Signed-off-by: Walker Crouse <Walker.Crouse@bjss.com>
This commit is contained in:
parent
c0dbc9f22d
commit
717c910c57
|
@ -17,7 +17,7 @@ jobs:
|
|||
- name: Check formatting
|
||||
run: ./scripts/checkfmt.sh
|
||||
- name: Build
|
||||
run: cargo build --verbose
|
||||
run: ./scripts/buildall.sh
|
||||
- name: Run tests
|
||||
run: cargo test --verbose
|
||||
|
||||
|
@ -30,6 +30,6 @@ jobs:
|
|||
- name: Check formatting
|
||||
run: ./scripts/checkfmt.sh
|
||||
- name: Build
|
||||
run: cargo build --verbose
|
||||
run: ./scripts/buildall.sh
|
||||
- name: Run tests
|
||||
run: cargo test --verbose
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
cargo build --workspace --verbose
|
||||
(
|
||||
cd examples
|
||||
cargo build --workspace --verbose
|
||||
)
|
Loading…
Reference in New Issue