Skip to content
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
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ jobs:
with:
egress-policy: audit

- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libudev-dev

- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

- name: Install Rust
Expand All @@ -62,7 +67,7 @@ jobs:
uses: swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0 # v2.8.0

- name: Run tests
run: cargo nextest run ${{ matrix.test_args }}
run: cargo nextest run ${{ matrix.test_args }} --all-features

- name: Run Doc tests
run: cargo test --doc
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/functional.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ jobs:
with:
egress-policy: audit

- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libudev-dev

- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

- name: Cache
Expand Down Expand Up @@ -72,4 +77,4 @@ jobs:
- name: Execute functional tests
env:
OS_CLOUD: devstack
run: cargo nextest run --test functional -- --skip network::v2::auto_allocated_topology::list::list
run: cargo nextest run --test functional
Loading