ci: add more os for docker test #71
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: | |
test: | |
name: Test non user docker | |
strategy: | |
matrix: | |
os: [ macos-13, macos-latest, ubuntu-latest, windows-latest ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Setup Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
with: | |
version: v0.11.2 | |
install: true | |
- name: Test docker non-user with KCL version | |
run: docker run --user=999 --rm kcllang/kcl sh -c "kcl --version" | |
- name: Test docker non-user with KCL running | |
run: docker run --user=999 --rm kcllang/kcl sh -c "echo 'a=1' | kcl run -" |