chore: bump kcl deps to v0.10.0-rc.1 #31
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: image-e2e-tests | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-test: | |
name: Test | |
runs-on: ubuntu-latest | |
container: | |
image: kcllang/kcl | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Show KCL version | |
run: kcl version | |
- name: test Git deps | |
run: git clone https://github.com/kcl-lang/flask-demo-kcl-manifests | |
- name: Install dependencies | |
run: apt update && apt install make | |
- name: Example tests | |
run: ./examples/test.sh | |
- name: Run concurrent e2e tests | |
run: ./scripts/concurrent_test.sh |