Skip to content

Commit 1cb2be2

Browse files
authored
fix: hypercomplex encryption on large algebras (#56)
1 parent e88971d commit 1cb2be2

File tree

7 files changed

+349
-157
lines changed

7 files changed

+349
-157
lines changed

.github/workflows/docs.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: docs
22

3-
on: [push]
3+
on:
4+
push:
5+
branches:
6+
- master
47

58
jobs:
69

.github/workflows/unit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
- name: Execute Test Program
4343
working-directory: ${{env.working-directory}}
44-
run: ./test -d yes -w NoAssertions --use-colour yes --benchmark-samples 100 --benchmark-resamples 100000
44+
run: ./test [unit] -d yes -w NoAssertions --use-colour yes --benchmark-samples 100 --benchmark-resamples 100000
4545

4646
code-coverage:
4747
runs-on: ubuntu-22.04
@@ -74,7 +74,7 @@ jobs:
7474

7575
- name: Execute Test Program
7676
working-directory: ${{env.working-directory}}
77-
run: ./test
77+
run: ./test [unit]
7878

7979
- name: Generate Coverage Report
8080
working-directory: ${{env.working-directory}}
@@ -123,6 +123,6 @@ jobs:
123123
- name: Analyze Test Program Execution
124124
working-directory: ${{env.working-directory}}
125125
run: |
126-
valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes --verbose --log-file=valgrind.txt ./test ~[benchmark]
126+
valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes --verbose --log-file=valgrind.txt ./test [unit]
127127
cat valgrind.txt
128128
grep -q -w "All heap blocks were freed -- no leaks are possible" "valgrind.txt"

0 commit comments

Comments
 (0)