Merge tag 'v0.1.1' #38
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
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
rust_stable: 1.68.2 | |
jobs: | |
build: | |
name: Tests | |
env: | |
RUSTFLAGS: "-D warnings -C opt-level=z -C target-cpu=x86-64 -C debuginfo=1" | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Install Rust ${{ env.rust_stable }} | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ env.rust_stable }} | |
components: rustfmt, clippy | |
- name: Setup build cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Install smartcard libraries ( Linux only ) | |
if: runner.os == 'Linux' | |
run: | | |
sudo apt install -y libpcsclite-dev | |
- name: Clippy ( all-features on Linux ) | |
if: runner.os == 'Linux' | |
uses: actions-rs/cargo@v1 | |
with: | |
command: clippy | |
args: --all-targets --all-features --workspace -- -D warnings | |
- name: Clippy ( default features on not Linux ) | |
if: runner.os != 'Linux' | |
uses: actions-rs/cargo@v1 | |
with: | |
command: clippy | |
args: --all-targets --workspace -- -D warnings | |
- name: Check formatting | |
uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: --all -- --check | |
- name: Unit tests | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --workspace | |
- name: Build cli with smartcard ( Linux only ) | |
if: runner.os == 'Linux' | |
uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: -p golem-certificate-cli --features smartcard |