This website works better with JavaScript.
Home
Explore
Help
Sign In
kris
/
pqcrypto
mirror of
https://github.com/henrydcase/pqc.git
Watch
1
Star
1
Fork
0
Code
Issues
1
Releases
2
Wiki
Activity
Browse Source
maybe add CI
tags/v0.0.1
Henry Case
3 years ago
parent
f02248d478
commit
810f460a7e
1 changed files
with
23 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+23
-0
.github/workflows/main.yml
+ 23
- 0
.github/workflows/main.yml
View File
@@ -0,0 +1,23 @@
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: |
./ut
Write
Preview
Loading…
Cancel
Save