8000 :dependabot: chore(deps): Bump the gomod group across 1 directory with 5 updates · bomctl/bomctl@622fa99 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

:dependabot: chore(deps): Bump the gomod group across 1 directory with 5 updates #841

:dependabot: chore(deps): Bump the gomod group across 1 directory with 5 updates

:dependabot: chore(deps): Bump the gomod group across 1 directory with 5 updates #841

Workflow file for this run

# ------------------------------------------------------------------------
# SPDX-FileCopyrightText: Copyright © 2024 bomctl a Series of LF Projects, LLC
# SPDX-FileName: .github/workflows/go-test.yml
# SPDX-FileType: SOURCE
# SPDX-License-Identifier: Apache-2.0
# ------------------------------------------------------------------------
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ------------------------------------------------------------------------
---
name: go-test
on:
pull_request:
branches: main
types:
- opened
- reopened
- synchronize
workflow_dispatch:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Go
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
with:
go-version-file: go.mod
cache: false
- name: Run go tests
run: make test
0