diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 3ab87a9..87f0d18 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -10,3 +10,5 @@ on: jobs: go: uses: openconfig/common-ci/.github/workflows/basic_go.yml@125b6b58286d116b216e45c33cb859f547965d61 + - test-excludes-regex: ".*/integration.*" + - race-excludes-regex: ".*/integration.*" diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml deleted file mode 100644 index 2320d40..0000000 --- a/.github/workflows/linter.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Lint Code Base - -on: - push: - branches-ignore: [main] - # Remove the line above to run when pushing to master - pull_request: - branches: [main] - -jobs: - build: - name: Lint Code Base - runs-on: ubuntu-latest - - steps: - - name: Checkout Code - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Lint protobuf - uses: plexsystems/protolint-action@v0.7.0 - with: - configDirectory: .github