Skip to content

fix: ci: install pcsc-lite #43

fix: ci: install pcsc-lite

fix: ci: install pcsc-lite #43

Workflow file for this run

name: Rust
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
feature: ["gg18", "frost", "elgamal", "default"]
steps:
- uses: actions/checkout@v3
- name: Install latest stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Install protoc
uses: arduino/setup-protoc@v1
with:
version: 3.x
- name: Install pcsc-lite
run: apt install pcsc-lite
- name: Build
run: cargo build --no-default-features --features ${{ matrix.feature }} --verbose
- name: Run tests
run: cargo test --no-default-features --features ${{ matrix.feature }} --verbose