Skip to content

18/merge by @renovate[bot] test #44

18/merge by @renovate[bot] test

18/merge by @renovate[bot] test #44

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@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
with:
go-version-file: go.mod
- name: Test
run: go test ./...