Skip to content

11/merge by @renovate[bot] test #37

11/merge by @renovate[bot] test

11/merge by @renovate[bot] test #37

Workflow file for this run

name: test
run-name: ${{ github.ref_name }} by @${{ github.actor }} ${{ github.workflow }}
on:
pull_request:
branches:
- main
paths:
- .github/workflows/test.yaml
- "**/*.go"
- go.mod
- go.sum
defaults:
run:
shell: bash
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Go
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
with:
go-version-file: go.mod
- name: Test
run: go test ./...