We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4420e92 commit f0cb594Copy full SHA for f0cb594
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,25 @@
1
+name: "Continuous Integration"
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
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