Cite the PQC paper using Github's citation files #1708
Workflow file for this run
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: OpenSK tests | |
on: | |
push: | |
paths: | |
- 'src/**/*.rs' | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
ctap2_test: | |
name: CTAP2 unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: "true" | |
- uses: actions-rs/toolchain@v1 | |
with: | |
target: thumbv7em-none-eabi | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: 3.7 | |
- name: Install Python dependencies | |
run: python -m pip install --upgrade pip setuptools wheel | |
- name: Set up OpenSK | |
run: ./setup.sh | |
- name: Unit testing of CTAP2 (release mode) | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --release --features std | |
- name: Unit testing of CTAP2 (debug mode) | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --features std | |
- name: Unit testing of CTAP2 (release mode + CTAP1) | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --release --features std,with_ctap1 | |
- name: Unit testing of CTAP2 (debug mode + CTAP1) | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --features std,with_ctap1 | |
- name: Unit testing of CTAP2 (release mode + CTAP2.1) | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --release --features std,with_ctap2_1 | |
- name: Unit testing of CTAP2 (debug mode + CTAP2.1) | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --features std,with_ctap2_1 | |
- name: Unit testing of CTAP2 (release mode + CTAP1 + CTAP2.1) | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --release --features std,with_ctap1,with_ctap2_1 | |
- name: Unit testing of CTAP2 (debug mode + CTAP1 + CTAP2.1) | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --features std,with_ctap1,with_ctap2_1 | |