This repository has been archived by the owner on May 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
61 lines (41 loc) · 1.54 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Build
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Check codestyle
run: git ls-files '*.c' '*.h' | xargs clang-format -i --verbose && git diff --exit-code
- name: Build application
run: make
- name: Build application tests
run: make test
- name: Run unit tests
run: bin/pawg-test
- name: Run the -help flag
run: bin/pawg -h
- name: Run program with invalid input
run: bin/pawg -asd askdfj
- name: Generate standard password
run: bin/pawg
- name: Generate 1 password with capital letters
run: bin/pawg -c
- name: Generate 5 standard passwords
run: bin/pawg 5
- name: Generate 4 passwords in columnm, sized 13
run: bin/pawg 4 13 -1
- name: Generate 5 passwords sized 6 with capital letters, output in column
run: bin/pawg 5 6 -1 -c
- name: Generate 1 password including numbers
run: bin/pawg -n
- name: Generate 5 passwords with numbers and capital letters
run: bin/pawg 5 -n -c
- name: Generate 9 secure passwords, output in column
run: bin/pawg 9 10 -s -1
- name: Generate 5 passwords with special symbols
run: bin/pawg 5 5 -y
- name: Generate full-length sha-1 (40) hash password using seed "hello"
run: bin/pawg 1 40 -H hello
- name: Generate 5 hash-based segmented (size 20) passwords using seed "scrubs"
run: bin/pawg 5 20 -sha1 scrubs