Update current feature #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "CI" | |
on: | |
push: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
main: | |
name: Run helm demo | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Stop apparmor | |
run: | | |
sudo /etc/init.d/apparmor stop | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: '^1.19.2' | |
- name: Create k8s/kind cluster | |
run: | | |
go install github.com/k8s-school/ktbx@v1.1.1-rc17 | |
ktbx create -c | |
- name: Install postgresl with helm | |
run: | | |
./ci.sh |