Skip to content
This repository has been archived by the owner on Jan 16, 2025. It is now read-only.

build(deps): bump actions/setup-go from 3.5.0 to 5.0.1 #55

build(deps): bump actions/setup-go from 3.5.0 to 5.0.1

build(deps): bump actions/setup-go from 3.5.0 to 5.0.1 #55

Workflow file for this run

name: Test and Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Run Go Tests
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v3
- name: Set up Go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v3
with:
go-version: '1.22.1'
- name: Get dependencies
run: go mod tidy
- name: Run tests
run: go test ./... -v