Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

migrate ci to github action #411

Merged
merged 3 commits into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,27 +1,31 @@
# SPDX-License-Identifier: Apache-2.0
# Copyright 2024 Intel Corporation

name: protoc_gen_choice
name: Build and test workflow
on:
pull_request:
branches:
- master
push:
branches:
- master
pull_request:

jobs:
protoc_gen_choice:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: build
run: make build
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./protoc-gen-choice
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Build
run: go build -v -o ./protoc-gen-choice

- name: Unit tests
run: go test -race ./...

run: make test
45 changes: 45 additions & 0 deletions .github/workflows/code-scan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# SPDX-License-Identifier: Apache-2.0
# Copyright 2024 Intel Corporation

name: Code scan workflow

on:
pull_request:
branches:
- master
push:
branches:
- master

jobs:
version-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: check version
run: make check-version
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: golang-lint
run: make lint
license:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: check license
run: make license
fossa-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: FOSSA scan
uses: fossa-contrib/fossa-action@v3
with:
fossa-api-key: 6d304c09a3ec097ba4517724e4a4d17d
39 changes: 0 additions & 39 deletions .github/workflows/e2sm_kpm.yml

This file was deleted.

39 changes: 0 additions & 39 deletions .github/workflows/e2sm_kpm_v2.yml

This file was deleted.

39 changes: 0 additions & 39 deletions .github/workflows/e2sm_kpm_v2_go.yml

This file was deleted.

40 changes: 0 additions & 40 deletions .github/workflows/e2sm_mho.yml

This file was deleted.

39 changes: 0 additions & 39 deletions .github/workflows/e2sm_mho_go.yml

This file was deleted.

40 changes: 0 additions & 40 deletions .github/workflows/e2sm_ni.yml

This file was deleted.

40 changes: 0 additions & 40 deletions .github/workflows/e2sm_rc.yml

This file was deleted.

Loading