Update go.mod and go.sum to networkservicemesh/sdk-sriov@v1.14.0-rc.7 #1481
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
--- | |
name: ci | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'release/**' | |
pull_request: | |
jobs: | |
yamllint: | |
uses: networkservicemesh/.github/.github/workflows/yamllint.yaml@main | |
with: | |
config_file: "./.yamllint.yml" | |
shellcheck: | |
uses: networkservicemesh/.github/.github/workflows/shellcheck.yaml@main | |
build: | |
name: build | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Setup Go | |
uses: actions/setup-go@v1 | |
with: | |
go-version: 1.20.5 | |
- name: Build | |
run: go build -race ./... | |
golangci-lint: | |
uses: networkservicemesh/.github/.github/workflows/golangci-lint.yaml@main | |
excludeFmtErrorf: | |
uses: networkservicemesh/.github/.github/workflows/exclude-fmt-errorf.yaml@main | |
restrictNSMDeps: | |
uses: networkservicemesh/.github/.github/workflows/restrict-nsm-deps.yaml@main | |
with: | |
allowed_repositories: "sdk, api, sdk-vpp, sdk-sriov, govpp, vpphelper" | |
checkgomod: | |
uses: networkservicemesh/.github/.github/workflows/checkgomod.yaml@main | |
gogenerate: | |
uses: networkservicemesh/.github/.github/workflows/cmd-gogenerate.yaml@main | |
excludereplace: | |
uses: networkservicemesh/.github/.github/workflows/exclude-replace.yaml@main | |
docker-build-and-test: | |
if: github.repository != 'networkservicemesh/cmd-template' | |
uses: networkservicemesh/.github/.github/workflows/docker-build-and-test.yaml@main | |
secrets: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
docker-publish: | |
name: Docker Build & Test | |
runs-on: ubuntu-latest | |
if: github.repository != 'networkservicemesh/cmd-template' | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v1 | |
with: | |
go-version: 1.20.5 | |
- name: Find merged PR | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
uses: jwalton/gh-find-current-pr@v1 | |
id: findPr | |
with: | |
github-token: ${{ github.token }} | |
- name: Publish Image | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && success() && steps.findPr.outputs.number | |
uses: matootie/github-docker@v3.0.0 | |
with: | |
accessToken: ${{ github.token }} | |
tag: | | |
pr-${{ steps.findPr.outputs.pr }} | |
commit-${{ github.sha }} | |
latest |