mirror of
https://github.com/yannh/kubeconform.git
synced 2026-02-11 14:09:21 +00:00
21 lines
323 B
YAML
21 lines
323 B
YAML
name: build
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: tests
|
|
run: make docker-test
|
|
|
|
- name: build
|
|
run: make docker-build-static
|
|
|
|
- name: acceptance-tests
|
|
run:
|
|
docker build -t bats -f Dockerfile.bats .
|