Skip to content

Commit 08f11e6

Browse files
authored
Added second build and run
1 parent 227f523 commit 08f11e6

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/full-check.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,22 @@ jobs:
1111
- uses: actions/checkout@v2
1212
- name: install_dependencies
1313
run: sudo apt install libbsd-dev
14-
- name: first_step
14+
- name: first_build
1515
run: |
1616
./autogen.sh
1717
./configure
1818
make
1919
sudo make install
2020
sudo make uninstall
2121
make distclean
22+
- name: second_build
23+
run: |
24+
./autogen.sh
25+
./configure
26+
make
27+
sudo make install
28+
- name: run_program
29+
run: |
30+
rdate 2>&1 | grep Usage
31+
rdate -pn4v ntp.on.br
32+

0 commit comments

Comments
 (0)