-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
81abaf8
commit c98db07
Showing
1 changed file
with
5 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,13 +18,9 @@ jobs: | |
- uses: actions/checkout@v3 | ||
- name: Setup protoc | ||
uses: arduino/[email protected] | ||
- name: Build tulsa | ||
run: cd tulsa && cargo build --verbose | ||
- name: Test tulsa | ||
run: cd tulsa && cargo test --verbose | ||
- name: Build example-app | ||
run: cd example-app && cargo build --verbose | ||
- name: Test example-app with custom libs | ||
run: cd example-app && cargo test --verbose | ||
- name: Build | ||
run: cargo build --verbose | ||
- name: Test | ||
run: cargo test --verbose | ||
- name: Test example-app with third-party libs | ||
run: cd example-app && cargo test --features use_dependencies --verbose | ||
run: cd app && cargo test --features use_dependencies --verbose |