Add Github Actions build (#1000)

This commit is contained in:
Gábor Lipták 2020-11-10 21:29:02 -05:00 committed by GitHub
parent 0f129c5d6c
commit c0efe01ce2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 0 deletions

17
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: ci
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: Build
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: cd build && ./build.sh

View File

@ -1,5 +1,7 @@
#!/bin/sh
set -e
DOC_FILES="../README.md"
IMG_FILES="../src/icons/bypass.png"