mirror of
https://github.com/hairyhenderson/go-onerng.git
synced 2025-04-05 02:00:12 -05:00
20 lines
419 B
YAML
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
|