mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-11 11:57:04 +00:00
* Fix: pin dependencies to hash remove useless action and makefile steps Signed-off-by: Qiaozp <qiaozhongpei.qzp@alibaba-inc.com> * reinstall golangci-lint with certain version Signed-off-by: Qiaozp <qiaozhongpei.qzp@alibaba-inc.com> * rollback setup node Signed-off-by: Qiaozp <qiaozhongpei.qzp@alibaba-inc.com> Signed-off-by: Qiaozp <qiaozhongpei.qzp@alibaba-inc.com>
40 lines
975 B
YAML
40 lines
975 B
YAML
name: core-api-test
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'apis/**'
|
|
- 'pkg/oam/**'
|
|
- "hack/apis/**"
|
|
branches:
|
|
- master
|
|
- release-*
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
core-api-test:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Set up Go 1.19
|
|
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568
|
|
env:
|
|
GO_VERSION: '1.19'
|
|
with:
|
|
go-version: ${{ env.GO_VERSION }}
|
|
id: go
|
|
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b
|
|
|
|
- name: Get the version
|
|
id: get_version
|
|
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
|
|
|
|
- name: Test build kubevela-core-api
|
|
env:
|
|
VERSION: ${{ steps.get_version.outputs.VERSION }}
|
|
COMMIT_ID: ${{ github.sha }}
|
|
run: |
|
|
bash ./hack/apis/clientgen.sh
|
|
bash ./hack/apis/sync.sh test |