We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 371ff00 commit 15f5cc4Copy full SHA for 15f5cc4
.github/workflows/ci.yml
@@ -8,8 +8,32 @@ jobs:
8
runs-on: ubuntu-latest
9
steps:
10
- uses: actions/checkout@v2
11
- - name: Execute CI script
12
- run: ./ci.sh
+ - name: Setup Rust toolchain
+ uses: actions-rs/toolchain@v1
13
+ with:
14
+ toolchain: stable
15
+
16
+ # - name: Execute CI script
17
+ # run: ./ci.sh
18
19
+ - name: cargo build
20
+ uses: actions-rs/cargo@v1
21
22
+ command: build
23
24
+ - name: Install SoftHSM
25
+ run: |
26
+ apt-get update -y -qq &&
27
+ apt-get install -y -qq libsofthsm2 &&
28
+ mkdir /var/lib/softhsm/tokens
29
30
+ - name: cargo test
31
32
33
+ command: test
34
+ env:
35
+ PKCS11_SOFTHSM2_MODULE: /usr/lib/softhsm/libsofthsm2.so
36
+ RUST_BACKTRACE: 1
37
38
links:
39
name: Check links
0 commit comments