Chore: (deps): bump kcl-lang.io/krm-kcl from 0.9.1 to 0.10.0 #69
Workflow file for this run
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: build-and-test | |
on: ["push", "pull_request"] | |
jobs: | |
build-and-test: | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22 | |
- run: make test | |
# Only ubuntu os has the docker deps. | |
- if: matrix.os == 'ubuntu-latest' | |
name: e2e test | |
run: | | |
curl -Ls "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash | |
mkdir ./bin | |
mv kustomize ./bin/ | |
export PATH=$(pwd -P)/bin:$PATH | |
kustomize fn run examples/set-annotation/local-resource/ --dry-run |