Skip to content

Commit 0c8f751

Browse files
Added draft CI workflow
1 parent da36084 commit 0c8f751

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/main.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
on: [push, pull_request]
2+
3+
name: Main
4+
5+
jobs:
6+
check:
7+
name: Build
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: Compile
12+
run: cargo build --release
13+
# TODO install cargo-deb
14+
- name: Package .deb
15+
run: cargo deb

0 commit comments

Comments
 (0)