Adds build Github action (#3)

Adds simple build Github Action
This commit is contained in:
Renán I. Del Valle 2021-09-12 08:50:23 -07:00 committed by GitHub
parent c7c0157722
commit 1a1105206b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 2 deletions

22
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,22 @@
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Build
run: make

View file

@ -1,4 +1,4 @@
# Katbox
# Katbox ![CI](https://github.com/paypal/katbox/actions/workflows/ci.yml/badge.svg)
Katbox is an inline ephemeral volume manager with delayed deletion for Kubernetes.
@ -40,4 +40,4 @@ A closer look at how the creation and deletion of volumes works can be found [he
# Credits
This project was initially a fork of
[CSI Hostpath driver](https://github.com/kubernetes-csi/csi-driver-host-path).
[CSI Hostpath driver](https://github.com/kubernetes-csi/csi-driver-host-path).