Skip to content

refactor: add configure command #625

refactor: add configure command

refactor: add configure command #625

Workflow file for this run

#*********************************************************************
# Copyright (c) Intel Corporation 2021
# SPDX-License-Identifier: Apache-2.0
#*********************************************************************/
name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2019, windows-2022, ubuntu-22.04, ubuntu-20.04]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: Format
if: ${{ matrix.os == 'ubuntu-20.04' }}
run: if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then exit 1; fi
- name: Run go vet
run: go vet ./...
- name: Install Test Converter and run tests
if: ${{ matrix.os == 'ubuntu-20.04' }}
run: |
export GOPATH="$HOME/go/"
export PATH=$PATH:$GOPATH/bin
go install github.com/jstemmer/go-junit-report/v2@latest
go test -v 2>&1 ./... | go-junit-report -set-exit-code > rpc-go-unit.xml
- name: run the tests with coverage
run: go test ./... -coverprofile=coverage.out -covermode=atomic
- uses: codecov/codecov-action@894ff025c7b54547a9a2a1e9f228beae737ad3c2 # v3.1.3
if: ${{ matrix.os == 'ubuntu-20.04' }}
name: Upload Coverage Results
# Runs a single command using the runners shell
- name: build go
if: ${{ matrix.os == 'windows-2019' }}
run: go build -o rpc.exe ./cmd
# Runs a single command using the runners shell
- name: build go
if: ${{ matrix.os != 'windows-2019' }}
run: go build -o rpc ./cmd
- name: GitHub Upload Release Artifacts
uses: actions/upload-artifact@v2
if: ${{ matrix.os == 'ubuntu-20.04' }}
with:
name: rpc-go-unit
path: rpc-go-unit.xml