Skip to content

1. joint debugging some interfaces, 2. new add conditional routing page 3.Add, modify conditional routing page #1323

1. joint debugging some interfaces, 2. new add conditional routing page 3.Add, modify conditional routing page

1. joint debugging some interfaces, 2. new add conditional routing page 3.Add, modify conditional routing page #1323

Workflow file for this run

#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
name: Continues Integration
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
# golangci:
# permissions:
# contents: read # for actions/checkout to fetch code
# pull-requests: read # for golangci/golangci-lint-action to fetch pull requests
# name: lint
# runs-on: ubuntu-latest
# strategy:
# matrix:
# golang:
# - '1.21'
# steps:
# - uses: actions/setup-go@v5
# with:
# go-version: ${{ matrix.go_version }}
# - uses: actions/checkout@v4
# - name: golangci-lint
# uses: golangci/[email protected]
# with:
# version: v1.54
# args: --timeout=10m
# skip-go-installation: true
unit-test:
name: Go Test
runs-on: ubuntu-latest
if: github.repository == 'apache/dubbo-kubernetes'
steps:
- uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Download dependencies
run: |
go mod download
- name: Go Test
run: |
go test ./... -gcflags=-l -coverprofile=coverage.txt -covermode=atomic
- name: "Upload test result"
if: always()
uses: actions/upload-artifact@v4
with:
name: test-coverage
path: "**/coverage.txt"
- name: Coverage
run: bash <(curl -s https://codecov.io/bash)
license-check:
name: License Check - Go
runs-on: ubuntu-latest
if: github.repository == 'apache/dubbo-kubernetes'
steps:
- uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Check License Header
uses: apache/skywalking-eyes/header@main
go-fmt:
name: Go fmt
runs-on: ubuntu-latest
if: github.repository == 'apache/dubbo-kubernetes'
steps:
- uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Download dependencies
run: |
go mod download
- name: Go Fmt
run: |
go fmt ./... && git status && [[ -z `git status -s` ]]
# diff -u <(echo -n) <(gofmt -d -s .)