Skip to content

Chore: (deps): bump kcl-lang.io/kcl-go from 0.10.0-rc.2.0.20240916094923-e0e5e06af2e6 to 0.10.0 #594

Chore: (deps): bump kcl-lang.io/kcl-go from 0.10.0-rc.2.0.20240916094923-e0e5e06af2e6 to 0.10.0

Chore: (deps): bump kcl-lang.io/kcl-go from 0.10.0-rc.2.0.20240916094923-e0e5e06af2e6 to 0.10.0 #594

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@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: make lint
- name: Running go tests with coverage
env:
GO111MODULE: on
run: |
make cover
- name: Send coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: coverage.out