Skip to content

add CI pipeline

add CI pipeline #3

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
pull_request:
types:
- opened
- synchronize
- reopened
branches:
- main
push:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Lint
uses: golangci/golangci-lint-action@v5
with:
version: 'v1.58.0'
args: -v --timeout 5m
skip-cache: true
- name: vet
run:
make vet
- name: fmt
run:
test -z "$(go fmt ./...)"
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Test
run: go test -v ./...
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
# - name: Install Protoc
# uses: arduino/setup-protoc@v2
# with:
# version: '3.x'
- name: Build
run: apt-get update
run: make build

Check failure on line 74 in .github/workflows/go.yml

View workflow run for this annotation

GitHub Actions / Go

Invalid workflow file

The workflow is not valid. .github/workflows/go.yml (Line: 74, Col: 7): 'run' is already defined
# test-k8s:
# needs: [check, test, build]
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: Set up Go
# uses: actions/setup-go@v4
# with:
# go-version: '1.22'
# - name: Build
# run: make build
# - name: Create k8s Kind Cluster
# uses: helm/kind-action@v1
# - name: Run test scripts
# run: |
# ./tests/ci/test_k8s.sh