Skip to content

Commit

Permalink
feat: add basic github CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fredleger committed Nov 21, 2023
1 parent f236937 commit 41ddb4a
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/werf.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: CI Workflow (werf)

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
uses: asdf-vm/actions/[email protected]

- name: Install asdf plugins & packages
run: |
asdf plugin add werf https://github.com/MxNxPx/asdf-werf.git
asdf plugin update --all
asdf install
- 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

0 comments on commit 41ddb4a

Please sign in to comment.