Skip to content

Commit 227f523

Browse files
authored
Add full-check.yml
1 parent ffe0d76 commit 227f523

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/full-check.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: full-check
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v2
12+
- name: install_dependencies
13+
run: sudo apt install libbsd-dev
14+
- name: first_step
15+
run: |
16+
./autogen.sh
17+
./configure
18+
make
19+
sudo make install
20+
sudo make uninstall
21+
make distclean

0 commit comments

Comments
 (0)