Skip to content

Commit

Permalink
fix(ci): install pcsc, skip tests requiring card
Browse files Browse the repository at this point in the history
  • Loading branch information
jjanku committed Oct 18, 2023
1 parent 640e4e3 commit 2081222
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,19 @@ jobs:
uses: arduino/setup-protoc@v1
with:
version: 3.x
- name: Install pcsc-lite
run: sudo apt-get install libpcsclite-dev
- name: Build
run: cargo build --no-default-features --features ${{ matrix.feature }} --verbose
run: >
cargo build
--no-default-features
--features ${{ matrix.feature }}
--verbose
- name: Run tests
run: cargo test --no-default-features --features ${{ matrix.feature }} --verbose
run: >
cargo test
--no-default-features
--features ${{ matrix.feature }}
--verbose
--
--skip card

0 comments on commit 2081222

Please sign in to comment.