Skip to content

Commit f00b8e0

Browse files
committed
feat: Implement passkey registration
1 parent 65a065f commit f00b8e0

File tree

19 files changed

+1418
-69
lines changed

19 files changed

+1418
-69
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,11 @@ jobs:
4545
with:
4646
egress-policy: audit
4747

48+
- name: Install dependencies
49+
run: |
50+
sudo apt-get update
51+
sudo apt-get install -y libudev-dev
52+
4853
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4954

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

6469
- name: Run tests
65-
run: cargo nextest run ${{ matrix.test_args }}
70+
run: cargo nextest run ${{ matrix.test_args }} --all-features
6671

6772
- name: Run Doc tests
6873
run: cargo test --doc

.github/workflows/functional.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@ jobs:
3535
with:
3636
egress-policy: audit
3737

38+
- name: Install dependencies
39+
run: |
40+
sudo apt-get update
41+
sudo apt-get install -y libudev-dev
42+
3843
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3944

4045
- name: Cache
@@ -72,4 +77,4 @@ jobs:
7277
- name: Execute functional tests
7378
env:
7479
OS_CLOUD: devstack
75-
run: cargo nextest run --test functional
80+
run: cargo nextest run --test functional --all-features

0 commit comments

Comments
 (0)