PR to check failing tests on CI #6620
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
--- | |
name: ci | |
on: | |
pull_request: | |
push: | |
branches: | |
- "release/**" | |
jobs: | |
yamllint: | |
uses: networkservicemesh/.github/.github/workflows/yamllint.yaml@main | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.23.3 | |
- name: Test | |
run: go test -race -run TestNSMGR_CloseHeal ./pkg/networkservice/chains/nsmgr -count 5000 -timeout 6h | |
golangci-lint: | |
uses: networkservicemesh/.github/.github/workflows/golangci-lint.yaml@main | |
with: | |
linter-version: v1.60.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@v5 | |
with: | |
go-version: 1.23.1 | |
- 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 |