Skip to content

feat: add basic github CI #1

feat: add basic github CI

feat: add basic github CI #1

Workflow file for this run

name: CI Workflow
on:
push:
branches:
- ci/werf
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install asdf tools
uses: asdf-vm/actions/install@v1
with:
version: v0.13.1
- name: Provision kind Kubernetes cluster
run: |
curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.20.0/kind-linux-amd64
chmod +x ./kind
./kind create cluster
- name: Run make ci
run: make ci