Skip to content

feat(chart): update version #21

feat(chart): update version

feat(chart): update version #21

Workflow file for this run

name: Unit test
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
env:
GO_VERSION: '1.22.0'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
go:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Test
env:
GOPROXY: "https://proxy.golang.org"
run: go test -v ./...