Skip to content

Merge pull request #294 from kcl-lang/dependabot/go_modules/kcl-lang.… #900

Merge pull request #294 from kcl-lang/dependabot/go_modules/kcl-lang.…

Merge pull request #294 from kcl-lang/dependabot/go_modules/kcl-lang.… #900

Workflow file for this run

# Reference from:
# https://github.com/c-bata/go-prompt/blob/master/.github/workflows/test.yml
name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
name: Unit tests with coverage
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- run: make lint
- name: Running go tests with coverage
env:
GO111MODULE: on
run: |
make cover
- name: Running e2e tests with coverage
env:
GO111MODULE: on
run: |
make e2e
- name: Send coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: coverage.out
build-image:
name: build image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Setup QEMU
uses: docker/setup-qemu-action@v3
- name: Setup Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- run: |
make image-local-build