Skip to content

Bump the actions group across 1 directory with 4 updates (#12) #28

Bump the actions group across 1 directory with 4 updates (#12)

Bump the actions group across 1 directory with 4 updates (#12) #28

Workflow file for this run

name: gotest
on:
push:
branches: [main]
pull_request:
branches: ["**"]
jobs:
tests:
runs-on: self-hosted
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.22
- name: Checkout code
uses: actions/checkout@v4
- name: Get dependencies
run: |
go get -v -t ./...
go install gotest.tools/gotestsum@latest
- name: modVerify
run: go mod verify
- name: Run Tests
run: make test