feat(amt): adds execute support for authorization #318
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#********************************************************************* | |
# Copyright (c) Intel Corporation 2020 | |
# SPDX-License-Identifier: Apache-2.0 | |
#*********************************************************************/ | |
# This workflow will do a clean install of go dependencies, build the source code and run tests across different versions of go | |
name: Go CI | |
on: | |
push: | |
branches: [ main, v2.0] | |
pull_request: | |
branches: [ main, v2.0] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
permissions: | |
contents: read # for actions/checkout to fetch code | |
pull-requests: read # for golangci/golangci-lint-action to fetch pull requests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go-version: [1.20.x] | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1 | |
with: | |
egress-policy: audit | |
- name: Install Go | |
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 | |
- name: Install Test Converter and run tests | |
run: | | |
export GOPATH="$HOME/go/" | |
export PATH=$PATH:$GOPATH/bin | |
go install github.com/jstemmer/go-junit-report/v2@latest | |
go test -covermode=atomic -coverprofile=coverage.out -race -v 2>&1 ./... | go-junit-report -set-exit-code > go-wsman.xml | |
- name: Format | |
run: if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then exit 1; fi | |
- name: Run go vet | |
run: go vet ./... | |
- name: Run go lint | |
uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc # v3.7.0 | |
with: | |
version: latest | |
- uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4 | |
name: Upload Coverage Results | |
- name: GitHub Upload Coverage Artifacts | |
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 | |
with: | |
name: go-wsman-unit | |
path: go-wsman.xml |