Dave Henderson d9e2265891
Adding makefile and CI
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
2020-11-01 14:18:36 -05:00

20 lines
419 B
YAML

name: Build
on: [push]
jobs:
linux-build:
runs-on: ubuntu-latest
container:
image: ghcr.io/hairyhenderson/gomplate-ci-build:latest
steps:
- uses: actions/checkout@v1
- run: make build
- run: make test
lint:
runs-on: ubuntu-latest
container:
image: ghcr.io/hairyhenderson/gomplate-ci-build:latest
steps:
- uses: actions/checkout@v1
- run: make lint