Skip to content

Commit 3323acf

Browse files
committed
Add github action to build
This makes sure the project builds correctly.
1 parent 559d5f3 commit 3323acf

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/build.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Build
2+
on: [push, pull_request]
3+
jobs:
4+
build:
5+
name: Build
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v2
9+
- name: Build
10+
uses: docker/build-push-action@v1
11+
with:
12+
push: false

0 commit comments

Comments
 (0)