Adding digital locker example (#117)

This commit is contained in:
Kevin Lewi
2021-01-21 20:18:57 -08:00
committed by GitHub
parent f73fc55254
commit 511d371c9a
7 changed files with 517 additions and 40 deletions
+20
View File
@@ -91,6 +91,26 @@ jobs:
- name: Run expect (which then runs cargo run)
run: expect -f scripts/simple_login.exp
digital-locker-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
name: test digital_locker command-line example
steps:
- name: install expect
run: sudo apt-get install expect
- name: Checkout sources
uses: actions/checkout@v2
- name: install rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Run expect (which then runs cargo run)
run: expect -f scripts/digital_locker.exp
benches:
name: cargo bench compilation
runs-on: ubuntu-latest