add workflow and readme

This commit is contained in:
Thomas Stringer 2022-03-25 21:28:51 -04:00
parent 820f14d2b8
commit c9de37e14b
3 changed files with 72 additions and 2 deletions

24
.github/workflows/ci.yaml vendored Normal file
View file

@ -0,0 +1,24 @@
name: CI
on:
workflow_dispatch
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: make build
env:
VERSION: latest
- name: Test
run: make test