Skip to content

Commit

Permalink
feature add unit test and labeler workflow (apache#165)
Browse files Browse the repository at this point in the history
* add license

* add license

* add unit test workflow, rename golangci lint workflow

* changed golang version from 1.15 to 1.16 in workflow.

* fix golangci-lint invaild

* fix golangci-lint invalid.

* add labeler workflow

* fix labeler invaild
  • Loading branch information
106umao committed Jul 28, 2022
1 parent e1b03ed commit 62f61c1
Show file tree
Hide file tree
Showing 6 changed files with 220 additions and 21 deletions.
71 changes: 71 additions & 0 deletions .github/actions/labeler/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
#
# 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.
#

coding:
- 'pkg/**/*'
- 'sample/**/*'
- 'test/**/*'
- 'cmd/**/*'

# directory .github
ci/cd:
- any: ['.github/**/*']

# directory sample
sample:
- any: ['sample/**/*']

test:
- any: ['test/**/*','testdata/**/*']

# directory cmd
cmd:
- any: ['cmd/**/*']

# directory changes
milestone:
- any: ['changes/**/*']


# directory pkg
common:
- any: ['pkg/common/**/*']

config:
- any: ['pkg/config/**/*']

imports:
- any: ['pkg/imports/**/*']

integration:
- any: ['pkg/integration/**/*']

protocol:
- any: ['pkg/protocol/**/*']

remoting:
- any: ['pkg/remoting/**/*']

rm:
- any: ['pkg/rm/**/*']

tc:
- any: ['pkg/tc/**/*']

tm:
- any: ['pkg/tm/**/*']

44 changes: 23 additions & 21 deletions .github/workflows/main.yml → .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
/*
* 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.
*/
#
# 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.
#

# This is a basic workflow to help you get started with Actions

name: CI
name: Golang CI Lint

# Controls when the workflow will run
on:
Expand All @@ -39,16 +39,18 @@ jobs:
strategy:
matrix:
golang:
- 1.15
- 1.16

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/setup-go@v2
- uses: actions/setup-go@v3
name: Set Up Go
with:
go-version: 1.15
go-version: 1.16
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: golangci-lint
name: "Checkout ${{ github.ref }}"
- name: Golang CI Lint
uses: golangci/golangci-lint-action@v3.1.0
with:
version: v1.44.2
Expand Down
42 changes: 42 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
#
# 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.
#

# This workflow will help me to auto set up label for pull request

name: "Pull Request Labeler"
on:
- pull_request_target

jobs:
triage:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: "checkout ${{ github.ref }}"
uses: actions/checkout@v3
with:
persist-credentials: false
submodules: true

- uses: actions/labeler@v4
name: "Labeler"
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
configuration-path: .github/actions/labeler/labeler.yml
sync-labels: true
50 changes: 50 additions & 0 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
#
# 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.
#

# This is a workflow to help you test the unit case

name: Unit Test

on:
push:
branches: [ master ]
pull_request:
branches: "*"

jobs:
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
strategy:
matrix:
golang:
- 1.16
steps:
- name: Set Up Go
uses: actions/setup-go@v2
with:
go-version: 1.16

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: "Checkout ${{ github.ref }}"
uses: actions/checkout@v3

- name: Build
run: go build -v ./...

- name: Test
run: go test -v ./...
17 changes: 17 additions & 0 deletions changes/dev.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
<!--
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.
-->

### Development notes

### dev version
Expand Down
17 changes: 17 additions & 0 deletions changes/dev_zh.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
<!--
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.
-->

### 开发记录


Expand Down

0 comments on commit 62f61c1

Please sign in to comment.