Skip to content

Commit

Permalink
ci: add test & build without features (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
imrn99 authored Oct 22, 2024
1 parent 52d2b69 commit 4500887
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
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

0 comments on commit 4500887

Please sign in to comment.