feat: cktap-swift #49
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- 'master' | |
- 'release/*' | |
pull_request: | |
branches: | |
- 'master' | |
- 'release/*' | |
name: CI | |
jobs: | |
build_test: | |
name: Build and test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- version: stable | |
- version: 1.56.0 # MSRV | |
msrv: true | |
features: | |
- --no-default-features | |
- --features default | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: Install Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust.version }} | |
override: true | |
profile: minimal | |
- name: Rust Cache | |
uses: Swatinem/rust-cache@v2.2.1 | |
- name: Install libpcsclite-dev | |
run: sudo apt install libpcsclite-dev | |
- name: Use MSRV Cargo.toml # Don't include "cli" in workspace if using MSRV | |
if: ${{ matrix.rust.msrv }} | |
run: cp Cargo.toml.MSRV Cargo.toml | |
- name: Build | |
run: cargo build ${{ matrix.features }} | |
- name: Test | |
run: cargo test ${{ matrix.features }} | |
rust_fmt: | |
name: Rust fmt | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
profile: minimal | |
components: rustfmt | |
- name: Check fmt | |
run: cargo fmt --all -- --config format_code_in_doc_comments=true --check | |
clippy_check: | |
name: Clippy check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
components: clippy | |
override: true | |
- name: Rust Cache | |
uses: Swatinem/rust-cache@v2.2.1 | |
- name: Install libpcsclite-dev | |
run: sudo apt install libpcsclite-dev | |
- uses: actions-rs/clippy-check@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
args: --all-features --all-targets -- -D warnings | |