update to v1.14.1-rc.4 #6585
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: | |
pull_request: | |
push: | |
branches: | |
- "release/**" | |
jobs: | |
yamllint: | |
uses: networkservicemesh/.github/.github/workflows/yamllint.yaml@main | |
build-and-test: | |
uses: networkservicemesh/.github/.github/workflows/build-and-test.yaml@main | |
with: | |
os: '["ubuntu-latest", "macos-latest", "windows-latest"]' | |
golangci-lint: | |
uses: networkservicemesh/.github/.github/workflows/golangci-lint.yaml@main | |
with: | |
linter-version: v1.53.3 | |
exclude-fmt-errorf: | |
uses: networkservicemesh/.github/.github/workflows/exclude-fmt-errorf.yaml@main | |
restrict-nsm-deps: | |
uses: networkservicemesh/.github/.github/workflows/restrict-nsm-deps.yaml@main | |
with: | |
allowed_repositories: "api" | |
checkgomod: | |
uses: networkservicemesh/.github/.github/workflows/checkgomod.yaml@main | |
gogenerate: | |
uses: networkservicemesh/.github/.github/workflows/sdk-gogenerate.yaml@main | |
exclude-replace: | |
uses: networkservicemesh/.github/.github/workflows/exclude-replace.yaml@main | |
code-cov: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: ["ubuntu-latest", "macos-latest"] | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Setup Go | |
uses: actions/setup-go@v1 | |
with: | |
go-version: 1.20.5 | |
- run: | | |
go test -coverprofile=coverage-${{ matrix.os }}.txt -covermode=atomic -race ./... | |
- name: Upload coverage reports to Codecov with GitHub Action | |
uses: codecov/codecov-action@v3 |