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: add test & build without features #42

Merged
merged 1 commit into from
Oct 22, 2024
Merged
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
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ on:

env:
CARGO_TERM_COLOR: always
# RUSTFLAGS: "-D warnings"

jobs:
build_crates:
Expand All @@ -25,6 +24,8 @@ jobs:
- uses: Swatinem/rust-cache@v2
- name: Build main crate
run: cargo build -p integraal --all-features
- name: Build main crate (no features)
run: cargo build -p integraal
build_examples:
name: Build examples for ${{ matrix.os }}
strategy:
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ on:

env:
CARGO_TERM_COLOR: always
# RUSTFLAGS: "-D warnings"

jobs:
format:
Expand All @@ -31,6 +30,16 @@ jobs:
- uses: Swatinem/rust-cache@v2
- name: Run Clippy
run: cargo clippy --all --all-features
clippy-no-feat:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Run Clippy
run: cargo clippy --all
tests:
runs-on: ubuntu-22.04
steps:
Expand Down