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