Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: more jobs for precomputed_tables #205

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/clippy-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ jobs:
with:
command: check
args: --release --no-default-features
- name: Cargo check precomputed
uses: actions-rs/cargo@v1
with:
command: check
args: --release --no-default-features --features precomputed_tables
# This check here is to ensure that it builds for no-std rust targets
- name: Cargo check for no-std
uses: actions-rs/cargo@v1
Expand Down
12 changes: 11 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,21 @@ jobs:
with:
command: test
args: --all-features
- name: test/release default features
uses: actions-rs/cargo@v1
with:
command: test
args: --release
- name: test/release features
uses: actions-rs/cargo@v1
with:
command: test
args: --release --no-default-features
- name: test/release features
uses: actions-rs/cargo@v1
with:
command: test
args: --release --all-features
args: --release --no-default-features --features precomputed_tables
- name: docs build
uses: actions-rs/cargo@v1
with:
Expand Down
Loading