Reference implementations of PQC
Não pode escolher mais do que 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- name: PQC
-
- on:
- - push
- - pull_request
-
- jobs:
- unit-test:
- name: Unit tests
- runs-on: [ubuntu-20.04]
- steps:
- - uses: actions/checkout@v1
- with:
- submodules: true
- - name: build
- run: |
- mkdir -p build
- cd build
- cmake -DCMAKE_BUILD_TYPE=Release ..
- make
- - name: run tests
- run: |
- cd build && ./ut
- - name: Build Rust bindings
- run: |
- cd src/rustapi/pqc-sys && cargo build
|