chore(deps): Bump golang.org/x/net in /vmware-event-router #294
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: VMware Event Router Linting | |
# triggered on every push and PRs but only when changes inside | |
# vmware-event-router (sub)dir(s) | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
paths: | |
- "vmware-event-router/**" | |
push: | |
paths: | |
- "vmware-event-router/**" | |
jobs: | |
golangci: | |
name: lint | |
strategy: | |
matrix: | |
go-version: ["1.19"] | |
platform: ["ubuntu-latest"] | |
runs-on: ${{ matrix.platform }} | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 | |
- name: Set up Go ${{ matrix.go-version }} | |
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe | |
with: | |
go-version: ${{ matrix.go-version }} | |
cache: false # use golangci-lint caching | |
id: go | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc | |
with: | |
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. | |
version: latest | |
# Optional: working directory, useful for monorepos | |
working-directory: vmware-event-router | |
# Optional: golangci-lint command line arguments. | |
args: --build-tags unit,integration -v --timeout 3m | |
# Optional: show only new issues if it's a pull request. The default value is `false`. | |
# only-new-issues: true |