-
Notifications
You must be signed in to change notification settings - Fork 1
73 lines (61 loc) · 1.73 KB
/
rust.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
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