Skip to content

Commit f0cb594

Browse files
committed
Add CI workflow
1 parent 4420e92 commit f0cb594

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: "Continuous Integration"
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
name: Build
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Checkout repository
16+
uses: actions/checkout@v2
17+
18+
- name: Install dependencies
19+
run: sudo apt-get install libfuse-dev fuse
20+
21+
- name: Build
22+
run: make
23+
24+
- name: Install
25+
uses: sudo make install

0 commit comments

Comments
 (0)